dotnet / efcore

EF Core is a modern object-database mapper for .NET. It supports LINQ queries, change tracking, updates, and schema migrations.
https://docs.microsoft.com/ef/
MIT License
13.41k stars 3.11k forks source link

OwnedNavigationBuilder.HasIndex lacks overload with name argument #33739

Open achnologia opened 2 weeks ago

achnologia commented 2 weeks ago

Hello everyone!

I have a need to remap a bunch of fields into an owned entity. Some of the fields have multiple indexes on them. With EntityTypeBuilder it works like a charm after implementation of https://github.com/dotnet/efcore/issues/21089.

But I found out that OwnedNavigationBuilder lacks HasIndex method overload with name argument, tho they're using the same InternalEntityTypeBuilder under the hood. This leads to the same problem that latest index overrides every index before it.

I looked through PR: https://github.com/dotnet/efcore/pull/21115 and didn't find any mentions of owned entities.

I wonder if there's any reason it was not implemented or just forgotten about? If it duplicates already existing question, please point to it, I wasn't able to find anything related on my own

EF Core version: 8.0.2 Database provider: Npgsql 8.0.2 Target framework: .NET 8.0