#design-patterns
Read more stories on Hashnode
Articles with this tag
Today I want to show you how to use the CQRS pattern to build fast and scalable applications. The CQRS pattern separates the writes and reads in the...
Dependency injection (DI) is one of the most exciting features of ASP.NET Core. It helps us build more testable and maintainable applications....
In software engineering, "coupling" means how much different parts of a software system depend on each other. If they are tightly coupled, changes to...
Let's imagine we have an existing Repository implementation, and we want to introduce caching to reduce the load on the database. How can we achieve...