R8.EntityFrameworkCore.AuditProvider 1.0.7

There is a newer version of this package available.
See the version list below for details.
dotnet add package R8.EntityFrameworkCore.AuditProvider --version 1.0.7
NuGet\Install-Package R8.EntityFrameworkCore.AuditProvider -Version 1.0.7
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="R8.EntityFrameworkCore.AuditProvider" Version="1.0.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add R8.EntityFrameworkCore.AuditProvider --version 1.0.7
#r "nuget: R8.EntityFrameworkCore.AuditProvider, 1.0.7"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install R8.EntityFrameworkCore.AuditProvider as a Cake Addin
#addin nuget:?package=R8.EntityFrameworkCore.AuditProvider&version=1.0.7

// Install R8.EntityFrameworkCore.AuditProvider as a Cake Tool
#tool nuget:?package=R8.EntityFrameworkCore.AuditProvider&version=1.0.7

R8.EntityFrameworkCore.AuditProvider

A .NET package for Entity Framework, providing comprehensive change tracking with deep insights. Capture creation, updates, deletions, and restorations of entities, including property names, old and new values, stack traces, and user details, all neatly stored in an Audits column as JSON.

Seamless Entity Auditing: Easily integrate audit functionality into your Entity Framework applications, offering a complete audit trail enriched with stack traces and user information. Gain full visibility into entity lifecycle changes for compliance, debugging, and accountability.

Full Entity Lifecycle Visibility: Track and visualize the complete life cycle of your entities with detailed auditing. In addition to changes, this package records the stack trace of changes and user actions, enabling a deeper understanding of data evolution and robust audit trails.

Installation

Step 1:
// ... other services

// Add AuditProvider
services.AddEntityFrameworkAuditProvider(options =>
{
    options.JsonOptions.WriteIndented = false;
    options.MaxStoredAudits = 10;
    options.UserProvider = serviceProvider =>
    {
        var httpContextAccessor = serviceProvider.GetRequiredService<IHttpContextAccessor>();
        var user = httpContextAccessor.HttpContext?.User;
        if (user?.Identity?.IsAuthenticated == true)
        {
            var userId = user.FindFirstValue(ClaimTypes.NameIdentifier);
            var username = user.FindFirstValue(ClaimTypes.Name);
            return new AuditProviderUser(userId, new Dictionary<string, object>
            {
                { "Username", username }
            });
        }
        return null;
    };
});

services.AddDbContext<YourDbContext>((serviceProvider, optionsBuilder) =>
{
    // Your DbContext connection configuration here
    // ...
    optionsBuilder.AddEntityFrameworkAuditProviderInterceptor(serviceProvider);
});

| Option | Type | Description | Default | |--------------------|----------------------------------------------------|-------------------------------------------------------------|--------------------| | JsonOptions | System.Text.Json.JsonSerializerOptions | Json serializer options to serialize and deserialize audits | An optimal setting | | MaxStoredAudits* | int? | Maximum number of audits to store in Audits column | null | | UserProvider | Func<IServiceProvider, EntityFrameworkAuditUser> | User provider to get current user id | null | If the number of audits exceeds this number, the earliest audits (except Created) will be removed from the column. If null, all audits will be stored.

Step 2:
  • Implement IAuditable (and IAuditableDelete) in your Aggregate Auditable Entity (Or you can implement IAuditable/IAuditableDelete in your Entity directly):
  • then inherit your entity from AggregateAuditable:

public record YourEntity : AggregateAuditable
{
    // Your entity properties
    // ...
    public string FirstName { get; set; }
    
    [IgnoreAudit] // Ignore this property from audit
    public string LastName { get; set; }
    
    // ...
}
  • Deleted and UnDeleted flags would be stored, only if IAuditableDelete implemented.
  • Flags Created/Changed cannot be done simultaneously with Deleted/UnDeleted.
Step 3:

Migrate your database.

Highly recommended to test it on a test database first, to avoid any data loss.

Step 4:

To take advantages of JsonElement Audits property, you can easily cast it to AuditCollection:

var audits = (AuditCollection)entity.Audits.Value; // Cast to AuditCollection
    
JsonElement jsonElement = audits.Element; // Get underlying JsonElement

Audit[] deserializedAudits = audits.Deserialize(); // Get deserialized audits
Audit creationAudit = audits.GetCreated(); // Get created audit
Audit lastUpdatedAudit = audits.GetLast(includedDeleted: false); // Get last audit

Output

Stored data in Audits column will be like this:

[
  {
    "f": "0",
    // Created
    "dt": "2023-09-25T12:00:00.0000000+03:30",
  },
  {
    "f": "1",
    // Updated
    "dt": "2023-09-25T12:00:00.0000000+03:30",
    "c": [
      {
        "n": "Name",
        // Name of the property
        "_v": "OldName",
        // Old value
        "v": "NewName"
        // New value
      }
    ],
    "u": {
      "id": "1",
      // The user id (if provided)
      "ad": {
        // The user additional info (if provided)
        "Username": "Foo"
      }
    }
  },
  {
    "f": "2",
    // Deleted
    "dt": "2023-09-25T12:00:00.0000000+03:30",
  },
  {
    "f": "3",
    // Restored/Undeleted
    "dt": "2023-09-25T12:00:00.0000000+03:30",
  }
]

🎆 Happy coding!

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.0 2,474 2/3/2024
1.0.10 192 2/1/2024
1.0.9 73 2/1/2024
1.0.7 82 1/27/2024
1.0.6 80 1/26/2024
1.0.5 74 1/26/2024
1.0.4 65 1/26/2024
1.0.3 74 1/26/2024
1.0.2 76 1/26/2024
1.0.1 72 1/26/2024
1.0.0 77 1/26/2024