Ling.EntityFrameworkCore.Audit is an extension library that can automatically record entity changes of Microsoft.EntityFrameworkCore.
- Package Manager
PM> Install-Package Ling.Audit
PM> Install-Package Ling.EntityFrameworkCore.Audit
- .NET CLI
dotnet add package Ling.Audit
dotnet add package Ling.EntityFrameworkCore.Audit
- Add
UseAudit()in yourDbContextservice registration code.
// in Program.cs
builder.Services.Addxxx<xxDbContext>(
connectionString,
optionsAction: options => options.UseAudit());
// in Startup.cs
services.Addxxx<xxDbContext>(
connectionString,
optionsAction: options => options.UseAudit());- Configure audit entity by attribute or fluent api
Use AuditIncludeAttribute to enable auditing for entity, all properties in entity will record changes by default. Use AuditIgnoreAttribute on property to disable property auditing.
[AuditInclude]
public class Post
{
public int Id { get; set; }
public string Title { get; set; } = null!;
[AuditIgnore]
public DateTimeOffset CreationTime { get; set; } = null!;
}You can also use fluent api in OnModelCreating
builder.Entity<Post>(b =>
{
b.IsAuditable();
b.Property(e => e.CreationTime).IsAuditable(false);
});- A switch to enable/disable auditing globally.
AppContext.SetSwitch(AuditDefaults.DisabledSwitchKey, false); // disable
AppContext.SetSwitch(AuditDefaults.DisabledSwitchKey, true); // enablenote: you may want to disable auditing when applying seed data.
- Configure audit record table names.
AuditDefaults.EntityChangeAuditLogTableName = "AuditEntityLog"; // for entity
AuditDefaults.EntityFieldChangeAuditLogTableName = "AuditFieldLog"; // for entity's fieldwarn: change table names needs to create a new migration.