This is a feed of links I've run across and found interesting or noteworthy. The images, content and opinions in them are owned by their respective authors.
Swagger and the OpenAPI specification the manual work out of API documentation and make it easier for developers to share their APIs with the wold.In this e...
Demo on GitHubhttps://github.com/hassanhabib/ODataDemo?WT.mc_id=ondotnet-c9-cephilliSimplifying the EDM with Datahttps://devblogs.microsoft.com/odata/simplif...
AspNet Boilerplate (ABP) is an open source and well-documented application framework. See the comprehensive tutorials of ABP for technical information.

How to write great, simple, and extensible code using the Commands, Queries, and Handlers (CQS) pattern. Possibly replacing much of your if-else branching.

For many years, I’ve been developing .NET applications using Orchard, an extensible, modular, open source application framework and CMS built with Classic ASP.NET MVC back in the days, and now…

For the last few years, Command Query Responsibility Segregation (CQRS) and Event Sourcing (ES) emerged as patterns that can help implement large scale systems, with some risky complexity, by having…

When implementing a simplified CQRS service, which usually has a single database but still separates commands from queries, the mediator pipeline can be used to manage transactions when processing…
Sample Event Sourcing implementation with .NET Core - GitHub - mizrael/SuperSafeBank: Sample Event Sourcing implementation with .NET Core

Everything that happens around us is an event of some sort. Let's find out what Event Sourcing is and how we can implement it in .NET Core.

Here we are for the second part of our Event Sourcing series. This time we'll see how we can start storing events in our system.