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.
Along with the advantages of event-based microservice systems comes the potential for errors. Handling these errors robustly is key to a successful project.
CAP Theorem generally applies to distribute databases. PACELC builds on CAP and describes system behavior when no network partition exists. Both of these can be applied in the context of microservices.
Controllers are dinosaurs - it's time to embrace Endpoints. The MVC pattern doesn't actually work as well for APIs as other options, like the Request-Endpoint-Response (REPR) pattern.
At one of my companies, I’ve been working on a DDD system written in ASP.NET for quite some time now (nearly 10 years, by my reckoning). In that time, we’ve gone from a BBOM (Big Ball of Mud) to a…
Enterprise HealthChecks for ASP.NET Core Diagnostics Package - GitHub - Xabaril/AspNetCore.Diagnostics.HealthChecks: Enterprise HealthChecks for ASP.NET Core Diagnostics Package
Parallel programming has historically been a relatively-niche and complex aspect of software development, often not worth the headache, but writing parallelized applications has only gotten easier…
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.