We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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.HasIndex(c => c.Id).HasDatabaseName("IX_Customer"); });
Alternative API:
modelBuilder.Entity<Customer>().HasIndex(c => c.Id) .ToTable("CustomerDetails", tb => tb.HasDatabaseName("IX_Customer"));
The text was updated successfully, but these errors were encountered:
Is it possible to reconsider the possibility of implementing this feature for EF Core 8 together with #27972 and #27971?
It helps to get rid of some bugs using EFCore.NamingConventions. For example, look at efcore/EFCore.NamingConventions#185
Sorry, something went wrong.
@amyboose The EF Core 8 train has left the platform
No branches or pull requests
Split off from #19811
Alternative API:
The text was updated successfully, but these errors were encountered: