I'm trying to create a multi-column unique index using a shadow property. I know i can solve this problem with just adding a propertie, but i would like to see if this is possible without doing that to keep my model clean.
To create a multi-column index you have the following option in Fluent API:
modelBuilder.Entity<AlbumTrack>().HasIndex(t => new { t.TrackNumber, t.AlbumId).IsUnique();
But I dont want to clutter my model with an extra AlbumId property and thus wanna use a shadow property, for a single column this works:
modelBuilder.Entity<AlbumTrack>().HasIndex(t => EF.Property<int>(t,"AlbumId")).IsUnique();
But for a multi-column index using a shadow propertie, like following
modelBuilder.Entity<AlbumTrack>()
.HasIndex(t => new { t.TrackNumber, EF.Property<int>(t,"AlbumId")})
.IsUnique();
I get the following error in vscode
Invalid anonymous type member declarator. Anonymous type members must be declared with a member assignment, simple name or member access.
Anybody has an idea how to do this with using a shadow properties or is it just not possible?
It's possible. You can simply use the HasIndex
overload with params string[] propertyNames
.
First make sure the shadow property is defined:
modelBuilder.Entity<AlbumTrack>()
.Property<int>("AlbumId");
and then define the index:
modelBuilder.Entity<AlbumTrack>()
.HasIndex("TrackNumber", "AlbumId")
.IsUnique();