We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Split off from #19811
modelBuilder.Entity<Customer>().ToTable("Customer"); modelBuilder.Entity<SpecialCustomer>().ToTable("SpecialCustomer", tb => { tb.Property(c => c.Id) .HasDefaultValue("1") .HasDefaultConstrainName("blah") .HasDefaultValueSql("newid()") .HasComputedColumnSql("1") .HasConversion<string>() .HasColumnType("nvarchar(100)") .IsRequired(false) .HasMaxLength(100) .IsUnicode(false) .HasPrecision(1, 2) .HasCollation("Latin1_General_BIN2"); });
The text was updated successfully, but these errors were encountered:
@AndriySvyryd @ajcvickers I'm interested in #24685. Is this planned for EF Core 8 release by any chance?
Sorry, something went wrong.
@maximcus No. Vote (👍) for both issues so we consider them for future releases
This is also a problem for explicit constraint names (e.g. key constraint, default constraint)
This issue is making itself quite apparent when you want to set a database computed column on a TPC entity, but not others of the same inherited type.
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Split off from #19811
The text was updated successfully, but these errors were encountered: