How to update ALL the dirty entities from the data store, and reset their changed values to the original store value?
The method ObjectContext.Refresh requires as a parameter the entities to be refreshed.
|
How to update ALL the dirty entities from the data store, and reset their changed values to the original store value? The method ObjectContext.Refresh requires as a parameter the entities to be refreshed. |
|||
|
|
|
The following usually works:
It sometimes causes problems with EntityRelations. look at my comment for further details. |
|||||||
|
|
If you want to reset ALL the changes, you could set the I believe this will achieve what you want. Kindness, Dan |
|||||
|
|
We use this:
Where "Context" is the context to refresh. We filter by change state and entities to avoid new entities and relations. |
||||
|
|