开发者

Attaching entity with association for modify

开发者 https://www.devze.com 2023-02-15 03:29 出处:网络
I would modify detached entity with associated collection, ex : Person and Address are POCO. When I attach entity and save changes, the collection changes isn\'t detected, how can I update Person wi

I would modify detached entity with associated collection, ex :

Person and Address are POCO.

When I attach entity and save changes, the collection changes isn't detected, how can I update Person with Address (added and deleted items) ?

Do I to track my collection manually ?

Edit开发者_开发百科

The synchronization of detached POCO must be manual... EF doesn't purpose merge solution of collection (navigation properties and relations) :(

I compare the current and original collections and I detect the differences


If you are using Entity Framework, which I assume you are since you listed it as a tag on your question, then objects only track their changes when they are generated by the entity context.

User someUser = dbEntities.Users.Single(x => x.Username == "test");
someUser.Name = "changed name";
db.SaveChanges();

That code will detect changes and persist them.

User someUser = new User()
{
    Username = "test" //assuming there is already user called test in the database.
}

Creating the user this way will not allow the EF context to detect the changes. Instead you will need to load the entity from the database, update it, and then persist the changes.

string username = "test";
User someUser = db.Users.Single(x => x.Username == username);
TryUpdateModel(someUser, valueProvider); //valueProvider is usually a form collection of some sort, but could be anything that implements IValueProvider.
db.SaveChanges();

This will allow you to pull in an entity, update it, and save the changes.


You can also work with detached POCO class, and then re-attach it to the context and set the state to modified:

Read this article: http://blogs.msdn.com/b/adonet/archive/2011/01/29/using-dbcontext-in-ef-feature-ctp5-part-4-add-attach-and-entity-states.aspx

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号