我看到这个问题已经被问了很多,但是我还没有找到任何可以解决我遇到的问题的东西。
显然我正在使用实体框架来执行对记录的更新。但是,一旦更新完成,每当我尝试保存时,都会收到以下错误消息:
An object with the same key already exists in the objectstatemanager
起初,我从包含ZipCodeTerritory
模型对象副本的视图中传递了一个集合对象zipToUpdate
。我通过拉出这个对象并只发送相关字段来更改代码。但是,我仍然遇到同样的错误。
奇怪的是我第一次运行这段代码时,它运行良好。之后的任何尝试都会出现错误。
控制器
这是调用编辑函数的方法中的代码
public static string DescriptionOnly(ZipCodeIndex updateZip)
{
if (!string.IsNullOrWhiteSpace(updateZip.newEffectiveDate) || !string.IsNullOrWhiteSpace(updateZip.newEndDate))
{
return "Neither effective or end date can be present if updating Territory Code only; ";
}
_updated = 0;
foreach (var zipCode in updateZip.displayForPaging.Where(x => x.Update))
{
ProcessAllChanges(zipCode, updateZip.newTerritory, updateZip.newStateCode, updateZip.newDescription, updateZip.newChannelCode);
}
_msg += _updated + " record(s) updated; ";
return _msg;
}
这是实际进行更新的方法。
private static void ProcessAllChanges(ZipCodeTerritory zipToUpdate, string newTerritory, string newStateCode, string newDescription, string newChannelCode)
{
try
{
if (!string.IsNullOrWhiteSpace(newTerritory)) zipToUpdate.IndDistrnId = newTerritory;
if (!string.IsNullOrWhiteSpace(newStateCode)) zipToUpdate.StateCode = newStateCode;
if (!string.IsNullOrWhiteSpace(newDescription)) zipToUpdate.DrmTerrDesc = newDescription;
if (!string.IsNullOrWhiteSpace(newChannelCode)) zipToUpdate.ChannelCode = newChannelCode;
if (zipToUpdate.EndDate == DateTime.MinValue) zipToUpdate.EndDate = DateTime.MaxValue;
_db.Entry(zipToUpdate).State = EntityState.Modified;
_db.SaveChanges();
_updated++;
}
catch (DbEntityValidationException dbEx)
{
_msg += "Error during update; ";
EventLog.WriteEntry("Monet", "Error during ProcessAllChanges: " + zipToUpdate.ToString() + " |EX| " + dbEx.Message);
}
catch (Exception ex)
{
_msg += "Error during update; ";
EventLog.WriteEntry("Monet", "Error during ProcessAllChanges: " + zipToUpdate.ToString() + " |MESSAGE| " + ex.Message);
}
}
编辑
该ZipCodeIndex
对象包含一个ZipCodeTerritory
模型对象列表。这些不是从 linq 查询中提取的,而是简单地从视图传递回控制器。这是启动该过程的控制器方法的签名:
[HttpPost]
public ActionResult Update(ZipCodeIndex updateZip, string button)