我有一个引用AppUser模型的Question模型。它是1到*的关系,因为1个AppUser有很多问题,而且一个问题属于1个AppUser。我的问题类看起来像这样:
public class Question
{
public int Id { get; set; }
public string Subject { get; set; }
public string Text { get; set; }
public DateTime Date { get; set; }
public int NumOfViews { get; set; }
public AppUser LastAnswerBy { get; set; }
public AppUser AppUser { get; set; }
public ICollection<Comment> Comments { get; set; }
}
所以我尝试在我的控制器中向数据库添加一个新问题,如下所示:
[HttpPost]
public ActionResult PostQuestion(Question question)
{
if (ModelState.IsValid)
{
var id = User.Identity.GetUserId();
var user = UserManager.Users.FirstOrDefault(x => x.Id == id);
question.Date = DateTime.Now;
question.AppUser = user;
_context.Questions.Add(question);
_context.SaveChanges();
return RedirectToAction("Index");
}
return View(question);
}
private AppUserManager UserManager
{
get { return HttpContext.GetOwinContext().GetUserManager<AppUserManager>(); }
}
使用此代码,我得到如下异常: IEntityChangeTracker的多个实例不能引用实体对象。在搜索了一下之后,似乎问题是我的控制器和AppUserManager类有两个不同的DbContext实例,解决方案是将它注入到这些类中。将它注入我的控制器是没有问题的,但我不知道如何将它注入到我的UserManager类中,如下所示:
public class AppUserManager : UserManager<AppUser>
{
public AppUserManager(IUserStore<AppUser> store)
: base(store)
{ }
public static AppUserManager Create(IdentityFactoryOptions<AppUserManager> options,
IOwinContext context)
{
AppIdentityDbContext db = context.Get<AppIdentityDbContext>();
AppUserManager manager = new AppUserManager(new UserStore<AppUser>(db));
return manager;
}
}
从我的IdentityConfig类中调用它,如下所示:
public class IdentityConfig
{
public void Configuration(IAppBuilder app)
{
app.CreatePerOwinContext<AppIdentityDbContext>(AppIdentityDbContext.Create);
app.CreatePerOwinContext<AppUserManager>(AppUserManager.Create);
app.CreatePerOwinContext<AppRoleManager>(AppRoleManager.Create);
app.UseCookieAuthentication(new CookieAuthenticationOptions
{
AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
LoginPath = new PathString("/Account/Login"),
});
app.UseExternalSignInCookie(DefaultAuthenticationTypes.ExternalCookie);
}
我的问题可能是我不太了解身份部分。非常感谢任何帮助
解决方案: 正如托比亚斯所说我使用2种不同的上下文来更新数据库。获得这样的上下文有效:
private AppIdentityDbContext Context
{
get { return HttpContext.GetOwinContext().Get<AppIdentityDbContext>(); }
}
答案 0 :(得分:4)
你的问题很可能是你尝试用两种不同的上下文做一件事。您正在使用一个上下文找到该用户,并尝试使用另一个上下文来更新数据库。要解决此问题,您应该在控制器中实例化您的上下文,如下所示:
_context = HttpContext.GetOwinContext().Get<AppIdentityDbContext>();
这样,您将获得相同的上下文,用于实例化AppUserManager
。
如果我弄错了,或者不清楚,请发表评论。 :)