EntityFrameworkCore.TemporalTables
EntityFrameworkCore.TemporalTables copied to clipboard
Tables not being created as Temporal
Our project was working with all new tables created Temporal.
We have modelBuilder.UseTemporalTables(); in our OnModelCreating.
But now for some reason tables created with migrationBuilder.CreateTable() are no longer created as Temporal. How can we debug this?
Standard CREATE TABLE statements are generated...
we were missing options.UseInternalServiceProvider(provider);
this is happening again. we do have options.UseInternalServiceProvider(provider); this time.