股票asp.net mvc 5应用程序创建应用程序用户,也称为身份用户在单独的上下文中,命名为一个名为“IdentityModels.cs”的文件 – 它看起来像这样
public class ApplicationDbContext : IdentityDbContext<ApplicationUser> { }
我试图将应用程序用户置于常规数据环境中,即这样的事情
public class BlogProphetContext : DbContext { public DbSet<ApplicationUser> ApplicationUsers { get; set; } public DbSet<Answer> Answers { get; set; } public DbSet<Question> Questions { get; set; } public DbSet<Tag> Tags { get; set; } }
但是,每次我尝试创建一个帐户时,我都会收到以下错误
The UserId field is required
当我尝试执行以下代码行时,在AccountController.cs中
result = await UserManager.AddLoginAsync(user.Id,info.Login);
我感觉到我的方法是错误的,我不能在没有某种外部chicanery的主数据上下文文件中的ApplicationUsers – 有没有人知道一些方法来做到这一点?所有文件都是最新的.
解决方法
这有点太容易了 – 事实证明,所有你必须做的删除
<ApplicationUser>
当您调用上下文时,一切都会像您所期望的那样(即MVC假设和开发人员假设(在本例中为我的))同步.
这是正常工作
public class MyContext : IdentityDbContext { public MyContext() : base("DefaultConnection") { } public DbSet<ApplicationUser> ApplicationUsers { get; set; } public DbSet<Answer> Answers { get; set; } protected override void OnModelCreating(DbModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); modelBuilder.Conventions.Remove<OneToManyCascadeDeleteConvention>(); } }