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
If you want to reset ALL the changes, you could set the ObjectContext to null and re-instantiate it.
ObjectContext
I believe this will achieve what you want.
Kindness,
Dan