Select from following answers:- Call the ObjectContext's SaveChanges method.

- Call the ObjectContext's Refresh method. Set the RefreshMode to StoreWins.
- Call the ObjectContext's Refresh method. Set the RefreshMode to ClientWins.
- All Above
The ObjectContext's SaveChanges method writes changes to the data source.
The ObjectContext's Refresh method updates an object in the object context with data from the data source. Setting the RefreshMode to StoreWins ensures that data source values overwrite client-side changes. This method does not persist changes to the database.
Show Correct Answer
Source: MeasureUp.Com | |
Alert Moderator