存储更新,插入或删除语句会影响意外编号的乐观并发异常

时间:2016-04-21 12:07:41

标签: asp.net-mvc entity-framework

我有一个动作方法,它会抛出以下错误。

dbcontext.TBL_ADMIN_GROUP_ROLE.Attach(objgrouprole);

var entry = dbcontext.Entry(objgrouprole);
entry.Property(x => x.IsDeleted).IsModified = true;

objgrouprole.IsDeleted = 1;

dbcontext.Entry(objgrouprole).State = EntityState.Modified;
dbcontext.SaveChanges();

return RedirectToAction("ManageGroupRole");

0 个答案:

没有答案