vote up 0 vote down star

If I map my Domain objects to linq Entities will I now not be able to track changes when saving my domain objects? So for any change in my model that i wish to make, once I map the object to linq entities for submission to db, all object values will be submitted to the db by linq since it it goes through a mapping first? Or would the object tracking here still be utilized?

flag

73% accept rate

2 Answers

vote up 1 vote down

Here's an article from microsoft about CRUD operations in multi-tiered environments (similiar issues to your Domain mapping scenario).

Check out the Update - With Complete Entities for the way to do change tracking yourself.

There's another technique, where you attach the entity as unmodified, and then .Refresh() with Keep Current Values - replacing the original. This would allow you to Insert/Update/Do Nothing as appropriate at the cost of a database roundtrip.

link|flag
vote up 1 vote down

Depends on the O/R mapper you're using. You're referring to entity framework which doesn't do any change tracking inside the entity and therefore it needs help from you when you re-attach an entity which previously was fetched from the db (so it knows it's not new).

link|flag
linq to sql has tracking. But when i map domain back to the entity it considers everything changed even if it was not. how to tell entity its not a real change or vice versa? – zsharp Apr 21 at 18:37
See answer below, by David – Frans Bouma Apr 22 at 7:58

Your Answer

Get an OpenID
or

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