#programming-blogs
Read more stories on Hashnode
Articles with this tag
I've been coding in .NET for years, but I never built an event sourced system. Event sourcing has always intrigued me, though. The idea of capturing...
If you were to glance at the folder structure of your system, could you tell what the system is about? And here's a more interesting question. Could a...
In ASP.NET Core applications using Minimal APIs, registering each API endpoint with app.MapGet, app.MapPost, etc., can introduce repetitive code. As...
Did you ever need to inject a scoped service into a singleton service? I often need to resolve a scoped service, like the EF Core DbContext, in a...
The applications you build serve your users (customers) to help them solve some problems. It's a common requirement that you will need to know who the...
Cross-cutting concerns are software aspects that affect the entire application. These are your common application-level functionalities that span...