vote up 3 vote down star

I am trying to attach a LINQ entity to the data context after I receive it from a form POST. However, all I get is the following exception:

An entity can only be attached as modified without original state if it declares a version member or does not have an update check policy.

I have also tried attaching the original row, like so:

dataContext.People.Attach(person, originalPerson);

In this case, I get the following exception:

Object reference not set to an instance of an object.

Here's the code in my controller:

[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Edit(int id, Person person) {
    var prevPerson = dataContext.People.Single(p => p.ID == id);
    dataContext.People.Attach(person, prevPerson);
    dataContext.SubmitChanges();
    return Redirect("~/People/Index");
}

Any ideas on what I'm doing wrong here? I can post the entity code if needed.

flag

Which line / object is raising the "Object reference not set to an instance of an object" error? I'd guess that prevPerson is null (maybe ID not being mapped as you're expecting?) but it's hard to say without seeing the code... – Dylan Beattie Feb 11 at 14:14
It's all being mapped. It throws the error when I Attach() the entity to the Table object. – changelog Feb 11 at 16:32

1 Answer

vote up 2 vote down check

In the LinqToSQL designer set all of the Update Checks to Never and when you attach call it like so:

 context.entity.Attach(entity, true);

Alternatively, you could also grab the entity from the db and change it using the data from the POSTed entity, then submit that as a change.

link|flag
That was it. Thanks! – changelog Feb 12 at 23:38
I've run into the same problem doing something similar. – toast Feb 13 at 15:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.