I'm developing a multi-tenant application in ASP.NET Core 2.1
. I'm utilizing AspNetCore.Identity.EntityFrameworkCore
framework for user management. I want to add a unique index combining NormalizedName
with TenantId
in Role
Table. Also, in the user table NormalizedUserName
with TenantId
in User
table.
This doesn't let me create that index since identity creates a default unique indexes for Role table RoleNameIndex
and UserNameIndex
for User table. What is the best way to configure that in OnModelCreating
method in EF Core?
modelBuilder.Entity<User>().HasIndex(u => new { u.NormalizedUserName, u.TenantId }).HasName("UserNameIndex").IsUnique(true);
modelBuilder.Entity<Role>().HasIndex(u => new { u.NormalizedName, u.TenantId }).HasName("RoleNameIndex").IsUnique(true);