vote up 0 vote down star

Hi, how can i automatically update my entity objects changed values and save them to db.

I hava an Action like that

public ActionResult Update()
    {

      User userToUpdate = new User();
      TryUpdateModel<User>(userToUpdate,ValueProvider);
      BaseRepository.Context.AttachTo("User",userToUpdate);
      BaseRepository.Context.SaveChanges();
      return Json("");
    }

ValuProvider : has the items that come from the client as post data.

The problem on this code is the code update all the values but i want to update only the changed values.

How can i find the changed values on my entity object.

flag

43% accept rate

3 Answers

vote up 0 vote down check

You should check out the ObjectContext.ApplyPropertyChanges Method it is suppose to do what your asking for... msdn

link|flag
vote up 0 vote down

This is really a problem for your data access code, not anything to do with your controller. Pick an ORM that handles this for you and forget about the problem.

link|flag
vote up 0 vote down

Two options:

  • On the View you could know the values that were changed by using Javascript and then you could pass that information to your controller.
  • You could simply compare the previous values (which you already have since you populated a view) and check each value before updating the DB.

I prefer last option, since at this point you could also check for data validation.

link|flag
Thanks for your answer, i want to ask one more think How can i find the changed values on my entity object. – Yucel Nov 5 at 22:48

Your Answer

Get an OpenID
or

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