我正在使用ASPNet Identity在我的Web應用程序中實現安全性。擴展IdentityRole和IdentityUser
有一個需求,我需要擴展IdentityRole和IdentityUser。
這裏是我的代碼來擴展IdentityUser。
public class ApplicationUser : IdentityUser
{
public virtual User User { get; set; }
}
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{
public ApplicationDbContext()
: base("name=CoreContext")
{
}
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
modelBuilder.Entity<IdentityUser>()
.ToTable("AspNetUsers");
modelBuilder.Entity<ApplicationUser>()
.ToTable("AspNetUsers");
}
}
我唯一的問題是IdentityRole
而你的問題/問題是......究竟是什麼?請更新您的問題一些更多的細節。 –
我的問題是我無法擴展IdentityRole。 –
@RamonCruz - 誰說你不能擴展IdentityRole? –