vote up 2 vote down star

Is there any attribute that one can put on a parameter for an action that tells LINQ to load a particular entity and only databind on the values that have changed a la Active Record/Monorail (see ARDataBinding)

flag

1 Answer

vote up 1 vote down check

You can use the TryUpdateModel and UpdateModel methods to update a model object with the values from a form collection like so:

public ActionResult Update(int id, FormCollection form)
{
    Item myItem = _ItemRepository.Get(id);

    TryUpdateModel(myItem, "Item", form);

    // Processing
}

Is that the kind of thing you were after?

Edit: Note, I've had problems with this working when using the Entity Framework if you have strict referential integrity. But there are ways around it by specifying only to update the fields posted in the form, or to write your own model updater.

link|flag

Your Answer

Get an OpenID
or

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