Hello and welcome π Today I wanted to talk about extending your application and your DbContext to run arbitrary code when a save occurs. The backstory While working with quite a few applications that work with databases especially using entity framework, I noticed the pattern of saving changes to the database and then do something … Continue reading Application triggers for Asp.Net Core 2.1 entity framework core
Dependency
Background worker in ASP.Net Core
Hello and Welcome :), Today we are going to discuss how we can add functionality to an APS.Net Core application outside of a request. The code for this post can be found here. The story As some, if not all of you know, web servers usually only work in the context of a request. So … Continue reading Background worker in ASP.Net Core
Let’s talk about MEF – Part 1
Hello and welcome :), This series is retired due to me spending most of my time on the .net core side. Thanks to feedback, this series might be revived at one point under .net core since I recently found out that there is a port for MEF on .net core but at this point I … Continue reading Let’s talk about MEF – Part 1
Rolling our own IoC
Hello and welcome π Previously we talked about what Dependency Inversion and Dependency Injection are, today weβre going to look at what an Inversion of Control (IoC) container is and how it works. In the future, we will also have a look at what are the common implementations of IoCs available and which are my … Continue reading Rolling our own IoC