Skip to content

Latest commit

 

History

History

README.md

Introduction

Ling.EntityFrameworkCore.Audit is an extension library that can automatically record entity changes of Microsoft.EntityFrameworkCore.

Installation

  1. Package Manager
PM> Install-Package Ling.Audit
PM> Install-Package Ling.EntityFrameworkCore.Audit
  1. .NET CLI
dotnet add package Ling.Audit
dotnet add package Ling.EntityFrameworkCore.Audit

Usage

  1. Add UseAudit() in your DbContext service 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());
  1. 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);
});

Confuguration

  1. A switch to enable/disable auditing globally.
AppContext.SetSwitch(AuditDefaults.DisabledSwitchKey, false); // disable
AppContext.SetSwitch(AuditDefaults.DisabledSwitchKey, true); // enable

note: you may want to disable auditing when applying seed data.

  1. Configure audit record table names.
AuditDefaults.EntityChangeAuditLogTableName = "AuditEntityLog"; // for entity
AuditDefaults.EntityFieldChangeAuditLogTableName = "AuditFieldLog"; // for entity's field

warn: change table names needs to create a new migration.