Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
1  
Are you creating a new context instance for every request? Did you query for candidate in the processing of the update request? – Ladislav Mrnka Sep 6 '12 at 12:21

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.