Temporal Table with ABP 8 #18668
Answered
by
maliming
Alexandre789010
asked this question in
Q&A
-
Hey, Is it possible to use temporal table with ABP 8? builder.Entity<Status.Status>(b =>
{
b.ToTable(CleanTaskerDbProperties.DbTablePrefix + "Status", CleanTaskerDbProperties.DbSchema, ba => ba.IsTemporal());
b.ConfigureByConvention();
b.Property(q => q.Name).IsRequired().HasMaxLength(StatusConsts.MaxStatusLength);
b.HasIndex(q => q.CreationTime);
}); The IsTemporal() method is not available |
Beta Was this translation helpful? Give feedback.
Answered by
maliming
Jan 3, 2024
Replies: 1 comment 1 reply
-
This method exists in the https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.SqlServer/ |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Alexandre789010
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This method exists in the
SQL server
integration package.https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.SqlServer/