asp.net-mvc – 如何将应用程序用户放在与其余对象相同的上下文中?

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 如何将应用程序用户放在与其余对象相同的上下文中?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
股票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>();
        }
    }
原文链接:https://www.f2er.com/aspnet/249746.html

猜你在找的asp.Net相关文章