Select from following answers:- Iterate through the DataContext.ChangeConflicts collection.

- Handle the ChangeConflictException.
- Call the SubmitChanges method of the DataContext with the ConflictMode parameter set to ContinueOnConflict.
- All Above
Call DataContext.SubmitChanges with ContinueOnConflict to ensure that all row updates are attempted.
Handle the ChangeConflictException to detect conflicts.
Iterate through the DataContext.ChangeConflicts collection to examine and handle specific conflicts
Show Correct Answer
Source: MeasureUp.Com | |
Alert Moderator