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
webpack ASP.NET Core and Webpack - Part 2 In the second and final part of this short series, I'll setup Webpack "production" (cache-busting) builds and add script tags (from Webpack created file names - with hashes) dynamically from C# in ASP.NET Core. You can find Part 1 here: GHOST_
c# ASP.NET Core MVC - Common Components/(Partial)Views across applications By the end of this post you'll have an understanding of how to share common View Components and (Partial)Views across different Web Applications in ASP.NET Core MVC. I'm in the process of building a website, I'm lazy and don't like writing things
AspNetCore IConfiguration in .NetCore In this post I'm going to give an overview of IConfiguration in .NetCore and also give examples on how to set this up with a provider and how to use different files to override configuration values. The full source code is available here. I