我是 MVC 的新手,在保存操作的编辑信息时遇到了麻烦。每次我尝试保存更改时,我都会得到: 存储更新、插入或删除语句影响了意外的行数 (0)。自加载实体后,实体可能已被修改或删除。刷新 ObjectStateManager 条目。
这是我的代码:
[Authorize]
[HttpPost]
public ActionResult Profile(designer thisDesigner)
{
if (ModelState.IsValid)
{
db.Entry(thisDesigner).State = System.Data.EntityState.Modified;
try
{
db.SaveChanges();
}
catch (Exception)
{
return View(thisDesigner);
}
}
return RedirectToAction("Profile");
}
还尝试查询新对象,然后设置并保存新值,在这种情况下不会出现异常,但不会保存数据。这是代码:
[Authorize]
[HttpPost]
public ActionResult Profile(designer thisDesigner)
{
designer updateDesigner = db.designers.Find(thisDesigner.designer_id);
if (ModelState.IsValid && updateDesigner != null)
{
db.Entry(updateDesigner).OriginalValues.SetValues(thisDesigner);
db.Entry(updateDesigner).State = System.Data.EntityState.Modified;
try
{
db.SaveChanges();
}
catch (Exception)
{
return View(thisDesigner);
}
}
return RedirectToAction("Profile");
}