AutoHistory icon indicating copy to clipboard operation
AutoHistory copied to clipboard

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

Results 25 AutoHistory issues
Sort by recently updated
recently updated
newest added

When trying to run it with .net 6 and ef core 6.0.1 this throws an exception during startup. ``` System.MissingMethodException: Method not found: 'System.Type Microsoft.EntityFrameworkCore.Metadata.ITypeBase.get_ClrType()'. at Microsoft.EntityFrameworkCore.DbContextExtensions.AutoHistory[TAutoHistory](EntityEntry entry, Func`1 createHistoryFactory)...

IdentityDbContext' does not contain a definition for 'EnsureAutoHistory' How to resolve this issue. public class ProjectDbContext : IdentityDbContext { }

I tried to enable recording of added entities as described in the README. Unfortunately it's not working. In the code of AutoHistory there is an extension method called `AddedHistory` which...

Could it be possible to have the latest released for net core 3?

Latest version 5.0.7 does not record delete operation.

When new a entity, I Use DbSet().Add(entity) Then context.Savechanges(); It can't record in autohistory table. But update or delete operation works well! My Microsoft.EntityFrameworkCore.AutoHistory version is 3.1.1. Looking forward to...

I have a root object that has a number of child entities being created and modified from the root object. Auto history seems to track only the changes from base...

I have updated my project to .Net core 3.0. Following the article, I did the below in my MVC web application project ``` class CustomAutoHistory : AutoHistory { public int...

The PK column in the history table is currently set to be an int with no straight forward method for providing an alternate type. In large scale systems this presents...