EF 4: Problems understanding DetectChanges when using POCO (no self tracking ObjectContext)

荒凉一梦 提交于 2020-01-14 05:21:27

问题


I wonder if anyone can help me?

I am having problems understanding why i need to issues DetectChanges on my POCO (non proxy) entities.

Of course i have this line to ensure that proxies are not returned.

   context.ObjectStateManager.GetObjectStateEntry(order).State

And doing some research it appears if i need to check the "state" of an object then i need to issue detechChanges But why would i need to check the State of an object?

Basically I send along my POCO entity to a method that SAVES the data to a new ObjectContext (I create and destroy ObjectContext on each method)

Hence, i am having problems understanding why i would need to have ObjectContext track or be aware of changes?

Is it because that if its not aware if will not be saved?

Maybe i am miss informed but it appears that if i am using an existing ObjectContext (which i am not i am creating and destroying each time) that ensure ObjectContext is aware would be beneficial but otherwise not?

So in 1 method I am updating an object by creating a new datacontext, saving it to the db and destroying ObjectContext . Hence i am not using 2 methods, 1 method to send the update or new record and then another method for SAVING.

I would really appreciate any quick explaanations of why its needed?

Thanks in advance


回答1:


Your question is little bit confusing. You are writting about Entity Framework but using DataContext which is related to LinqToSql.

The behavior differs in the way you are using ObjectContext. When you load POCO entity from database ObjectContext holds its instance in internal Identity Map. By default POCO doesn't use any kind of change tracking. When you save that POCO entity to the same instance of ObjectContext it internally calls DetectChanges to compare current entity state with stored state. This comparision defines which columns have to be updated. Internal call to DetectChanges is default behavior which can be turned off so you will have to call this method manually.

In your scenario you not using the same instance of ObjectContext. In that case you first have to Attach POCO entity to the ObjectContext. MSDN strictly says that when attaching entity it is marked as Unchanged. For that reason you have to say ObjectContext that entity has changed. You can do that for whole entity or you can define exactly which properties have changed but you have to do it manually = you have to store that information somewhere (Self tracking entities can help you with that but they have ohter disadvantages).



来源:https://stackoverflow.com/questions/3902328/ef-4-problems-understanding-detectchanges-when-using-poco-no-self-tracking-obj

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!