作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
股票 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
result = await UserManager.AddLoginAsync(user.Id, info.Login);
最佳答案
这有点太简单了 - 事实证明,您只需删除
<ApplicationUser>
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>();
}
}
关于asp.net-mvc - 如何将应用程序用户置于与其他对象相同的上下文中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19628144/
我是一名优秀的程序员,十分优秀!