builder.Entity<MyEntity>(e => {
e.ToTable(b => b.IsTemporal(t =>
{
t.PeriodColumnsHidden(false);
t.HasPeriodStart("PeriodStart").HasColumnName("PeriodStart");
t.HasPeriodEnd("PeriodEnd").HasColumnName("PeriodEnd");
}));
});
The implementation would involve adding IsHidden, SetIsHidden and related extension methods at the IMutableProperty level, then flowing this through the RelationalModel to SqlServerMigrationsSqlGenerator.
The implementation would involve adding
IsHidden,SetIsHiddenand related extension methods at theIMutablePropertylevel, then flowing this through theRelationalModeltoSqlServerMigrationsSqlGenerator.