Jag har nu implementerat följande lösning.
Som CodeNotFound påpekade i kommentarerna, brukade IdentityUser ha en Roles
fast egendom. Detta är inte längre fallet i .NET Core. Den här kommentaren/problemet
på GitHub verkar vara den nuvarande lösningen för .Net Core. Jag har försökt implementera det med följande kod:
Applikationsanvändare
public class ApplicationUser : IdentityUser
{
public ICollection<ApplicationUserRole> UserRoles { get; set; }
}
ApplicationUserRole
public class ApplicationUserRole : IdentityUserRole<string>
{
public virtual ApplicationUser User { get; set; }
public virtual ApplicationRole Role { get; set; }
}
Applikationsroll
public class ApplicationRole : IdentityRole
{
public ICollection<ApplicationUserRole> UserRoles { get; set; }
}
DBContext
public class ApplicationDbContext
: IdentityDbContext<ApplicationUser, ApplicationRole, string, IdentityUserClaim<string>,
ApplicationUserRole, IdentityUserLogin<string>,
IdentityRoleClaim<string>, IdentityUserToken<string>>
{
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
: base(options)
{
}
protected override void OnModelCreating(ModelBuilder builder)
{
base.OnModelCreating(builder);
builder.Entity<ApplicationUserRole>(userRole =>
{
userRole.HasKey(ur => new { ur.UserId, ur.RoleId });
userRole.HasOne(ur => ur.Role)
.WithMany(r => r.UserRoles)
.HasForeignKey(ur => ur.RoleId)
.IsRequired();
userRole.HasOne(ur => ur.User)
.WithMany(r => r.UserRoles)
.HasForeignKey(ur => ur.UserId)
.IsRequired();
});
}
}
Startup
services.AddIdentity<ApplicationUser, ApplicationRole>(options => options.Stores.MaxLengthForKeys = 128)
.AddEntityFrameworkStores<ApplicationDbContext>()
.AddDefaultTokenProviders();
Slutligen, se till att när du använder den laddar du ivrigt användarens användarroller, och sedan användarrollens roll så här:
this.Users = userManager.Users.Include(u => u.UserRoles).ThenInclude(ur => ur.Role).ToList();
Jag hade ett problem där Role
egenskapen för varje UserRole
var null och detta löstes genom att lägga till .ThenInclude(ur => ur.Role)
del.
Microsoft-dokument om ivrig laddning på flera nivåer:https://docs.microsoft.com/en-us/ef/core/querying/related-data#including-multiple-levels
ASP Core 2.2-uppdatering
Inneboende från IdentityUserRole<Guid>
not string Du kan också behöva ta bort koden i ModelBuilder för att få migreringarna att fungera.