I am using EF with MVC 4
my update function in repository
public virtual void Update(TObject TObject)
{
var entry = Context.Entry(TObject);
DbSet.Attach(TObject);
entry.State = EntityState.Modified;
}
The code work well when i was using this approach
[HttpPost]
public ActionResult Edit(int id, FormCollection collection)
{
try
{
// TODO: Add update logic here
var candidate = Registry.RepositoryFactory.GetCandidateRepository().Find(id);
if (TryUpdateModel(candidate))
{
Registry.RepositoryFactory.GetCandidateRepository().Update(candidate);
Registry.Context.SaveChanges();
return RedirectToAction("Index");
}
return View(candidate);
}
catch(Exception ex)
{
return View(ex.Message);
}
}
But when i change it to
[HttpPost]
public ActionResult Edit(Candidate candidate)
{
try
{
// TODO: Add update logic here
if (ModelState.IsValid)
{
Registry.RepositoryFactory.GetCandidateRepository().Update(candidate);
Registry.Context.SaveChanges();
return RedirectToAction("Index");
}
return View(candidate);
}
catch(Exception ex)
{
return View(ex.Message);
}
}
I am having this specific error
The view 'An object with the same key already exists in the ObjectStateManager. The ObjectStateManager cannot track multiple objects with the same key.' or its master was not found or no view engine supports the searched locations. The following locations were searched:
...
~/Views/Shared/An object with the same key already exists in the ObjectStateManager. The ObjectStateManager cannot track multiple objects with the same key..cshtml
Any body know what cause of this problem ?
Thank you for your reply