Application triggers for Asp.Net Core 2.1 entity framework core

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

Testing Entity Framework Core

Hello and welcome, In this post, we are going to have a look at how we can write automated tests using entity framework core. As in the recent previous posts, the code can be found here. The story A while back when working on a project, I wanted to do an integration test with a … Continue reading Testing Entity Framework Core

ASP.NET Core 1.1 and Identity adventures

Hello and Welcome ☺ Recently a friend and I were trying to implement the Identity pattern from ASP.Net Core 1.1 on a different database schema and with custom tables from a legacy application and though some trial and error we managed to do it. Today I want to share the steps we took and how … Continue reading ASP.NET Core 1.1 and Identity adventures