EntityFrameworkCore.TemporalTables icon indicating copy to clipboard operation
EntityFrameworkCore.TemporalTables copied to clipboard

Extension library which allows developers to easily use temporal tables in SQL Server using Entity Framework Core.

Results 20 EntityFrameworkCore.TemporalTables issues
Sort by recently updated
recently updated
newest added

Would be nice to have the ability to specify the table name and schema or be able to inject a service that could be used to calculate it. for instance...

I have an situation where I am using an Azure AD Account to run my migrations. The migration will run and create all the tables but it doesn't create the...

I want to use multiple of the same type as owned type. Something like: ``` class Compay { public Contact Contact1 { get; set; } public Contact Contact2 { get;...

It would be nice if we could specify the column names, rather than being stuck with SysStartTime and SysEndTime.

https://stackoverflow.com/questions/63229978/invoke-generic-method-at-runtime-with-reflection Add support to `EntityTypeBuilder` not only generic `EntityTypeBuilder` So library can be used also like `ModelBuilder.Entity(nameOfType, b => b.UseTemporalTable())` solution: in https://github.com/findulov/EntityFrameworkCore.TemporalTables/blob/master/EntityFrameworkCore.TemporalTables/Extensions/EntityTypeBuilderExtensions.cs add public static void UseTemporalTable(this EntityTypeBuilder entity)...

For auditing purposes, I want to override the DbContext.SaveChanges method to automatically fill user info into a specified column ("UpdatedBy" is usually used in most auditing examples) only for tables...

I have an entity that contains an inner collection. The collection's element type is configured as an Owned type, and it is mapped to its own table. I would like...

Error Message: Setting SYSTEM_VERSIONING to ON failed because table '{name}' has a FOREIGN KEY with cascading DELETE or UPDATE. The error occurs when I add a DbSet to the DbContext...

Let's say I created an initial migration and successfully run Update-Database, everything is great. If I run Update-Database 0 - I'll get the error: "Drop table operation failed on table...

Right now, the migration code and the migration SQL scripts look the same as if temporal tables were not being used. The `ITemporalTableSqlBuilder` interface has to be used in order...