https://github.com/zeppaman/csharp-aop
Repository of AOP examples for the article "How to Improve .Net Applications with AOP"
https://github.com/zeppaman/csharp-aop
aop aop-framework dotnet dotnetcore
Last synced: 3 months ago
JSON representation
Repository of AOP examples for the article "How to Improve .Net Applications with AOP"
- Host: GitHub
- URL: https://github.com/zeppaman/csharp-aop
- Owner: zeppaman
- License: gpl-3.0
- Created: 2019-07-04T17:16:11.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-24T16:38:53.000Z (over 2 years ago)
- Last Synced: 2023-03-06T09:16:54.786Z (over 2 years ago)
- Topics: aop, aop-framework, dotnet, dotnetcore
- Language: C#
- Homepage:
- Size: 30.3 KB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Doing things without writing code is the dream of any developer. In this article, we will learn a pattern that makes things happen without writing a line of code or quite. The philosophy is the AOP (Aspect-Oriented Programming). This technique is widely used in Java and helps to keep high-quality standards with low effort. Today we will learn how to use it also in .net core project with no pain.
This repo is the code base used for the medium article [How to Improve .Net Applications with AOP](https://levelup.gitconnected.com/aop-dotnet-applications-67c6d94c08b0?source=friends_link&sk=69f2cdfe8fcdc3530854c8dbddece8d6).