FrontLook.IAutoHistory 8.24.407.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package FrontLook.IAutoHistory --version 8.24.407.1
NuGet\Install-Package FrontLook.IAutoHistory -Version 8.24.407.1
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="FrontLook.IAutoHistory" Version="8.24.407.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FrontLook.IAutoHistory --version 8.24.407.1
#r "nuget: FrontLook.IAutoHistory, 8.24.407.1"
#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 FrontLook.IAutoHistory as a Cake Addin
#addin nuget:?package=FrontLook.IAutoHistory&version=8.24.407.1

// Install FrontLook.IAutoHistory as a Cake Tool
#tool nuget:?package=FrontLook.IAutoHistory&version=8.24.407.1

AutoHistory

A plugin for Microsoft.EntityFrameworkCore to support automatically recording data changes history.

How to use

AutoHistory will recording all the data changing history in one Table named AutoHistories, this table will recording data UPDATE, DELETE history.

  1. Install AutoHistory Package

Run the following command in the Package Manager Console to install Microsoft.EntityFrameworkCore.AutoHistory

PM> Install-Package Microsoft.EntityFrameworkCore.AutoHistory

  1. Enable AutoHistory
public class BloggingContext : DbContext
{
    public BloggingContext(DbContextOptions<BloggingContext> options)
        : base(options)
    { }

    public DbSet<Blog> Blogs { get; set; }
    public DbSet<Post> Posts { get; set; }

    protected override void OnModelCreating(ModelBuilder modelBuilder)
    {
        // enable auto history functionality.
        modelBuilder.EnableAutoHistory();
    }
}
  1. Ensure AutoHistory in DbContext. This must be called before bloggingContext.SaveChanges() or bloggingContext.SaveChangesAsync().
bloggingContext.EnsureAutoHistory()

Use Custom AutoHistory Entity

You can use a custom auto history entity by extending the Microsoft.EntityFrameworkCore.AutoHistory class.

class CustomAutoHistory : AutoHistory
{
    public String CustomField { get; set; }
}

Then register it in the db context like follows:

modelBuilder.EnableAutoHistory<CustomAutoHistory>(o => { });

Then provide a custom history entity creating factory when calling EnsureAutoHistory. The example shows using the factory directly, but you should use a service here that fills out your history extended properties(The properties inherited from AutoHistory will be set by the framework automatically).

db.EnsureAutoHistory(() => new CustomAutoHistory()
                    {
                        CustomField = "CustomValue"
                    });

Integrate AutoHistory into other Package

Microsoft.EntityFrameworkCore.UnitOfWork had integrated this package.

Product Compatible and additional computed target framework versions.
.NET 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 (1)

Showing the top 1 NuGet packages that depend on FrontLook.IAutoHistory:

Package Downloads
FrontLookCoreLibraryAssembly.Hosting.DbContext

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.24.502.15 0 5/2/2024
8.24.427.18 94 4/27/2024
8.24.421.10 79 4/21/2024
8.24.421.8 73 4/21/2024
8.24.407.1 106 4/6/2024
8.24.401.12 79 4/1/2024
8.24.401.2 89 3/31/2024
8.24.331.13 90 3/31/2024
8.24.323.1623 88 3/23/2024
8.24.323.1520 103 3/23/2024
8.24.323.23 102 3/23/2024