Ling.EntityFrameworkCore.Audit
1.1.1
If using string as `TUserKey` or custom `IAuditUserProvider<TUserKey>`, an error will be thrown
See the version list below for details.
dotnet add package Ling.EntityFrameworkCore.Audit --version 1.1.1
NuGet\Install-Package Ling.EntityFrameworkCore.Audit -Version 1.1.1
<PackageReference Include="Ling.EntityFrameworkCore.Audit" Version="1.1.1" />
paket add Ling.EntityFrameworkCore.Audit --version 1.1.1
#r "nuget: Ling.EntityFrameworkCore.Audit, 1.1.1"
// Install Ling.EntityFrameworkCore.Audit as a Cake Addin #addin nuget:?package=Ling.EntityFrameworkCore.Audit&version=1.1.1 // Install Ling.EntityFrameworkCore.Audit as a Cake Tool #tool nuget:?package=Ling.EntityFrameworkCore.Audit&version=1.1.1
Introduction
Ling.EntityFrameworkCore.Audit is an extension library that can automatically record entity changes of Microsoft.EntityFrameworkCore
.
Installation
- 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
Usage
- Add
UseAudit()
in yourDbContext
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());
- 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
- 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.
- 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.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
-
net6.0
- Microsoft.EntityFrameworkCore.Relational (>= 6.0.33)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 6.0.0)
-
net7.0
- Microsoft.EntityFrameworkCore.Relational (>= 7.0.20)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 7.0.0)
-
net8.0
- Microsoft.EntityFrameworkCore.Relational (>= 8.0.8)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 8.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.