entity framework core EF Core - Database Auditing with "UpdatedBy" In this post we'll look at implementing Auditing in EF Core. specifically recording the last user to "touch" (create, update or delete) a row. This is especially useful
c# Entity Framework Core: Soft Delete I've been writing a lot of Entity Framework Code recently for a company developing an OLTP System and I'd forgotten how much you get "for free" with Entity
c# Entity Framework Core - Custom Migrations In this post I'm going to cover the steps needed when setting up Entity Framework Core Custom Migrations. Custom Migrations are not always needed in an application. Entity Framework Core will get most people/businesses quite far with their standard "out-of-the-box" functionality.