PreviousNext

Audit Trail Implementation in ASP .NET Core with Entity Framework Core (.NET 5)

by iammukeshm, 2020-12-25T20:28:03.379Z

Audit Trail Implementation in ASP .NET Core with Entity Framework Core (.NET 5) Here is a handy technique to track changes that are done by your logged-in users. Ever wondered who had updated the value of a certain entity record in your ASP .NET Core Application? You would want to always keep a record of each and every modification made to your application data. This is quite vital for many businesses as well. Topics Covered. 1. Scaffolding the CRUD Application. 2. Getting Started with Audit Trail Implementation in ASP .NET Core 3. BONUS – Cleaner way to Update Entities via EFCore. 4 An Alternative – NuGet package.

Read More