If I try to update a record and while I'm editing the record it is changed by something else, I get this error displayed:
A Runtime Error has occurred.
Do you wish to Debug?
Line: 4698
Error: Sys.WebForms.PageRequestManagerServerErrorException: Row not found or changed.
Note that I have not upgraded this computer to the 5/12 build.
Is there a way for us to control the error message that the user sees?
Is there a way for us to resolve the concurrency conflict?
In Joseph Rattz's book "Pro LINQ" in chapter 17 he talks about how to resolve concurrency conflicts.
"Resolving conflicts gets no easier than this. You merely catch the ChangeConflictException and call the ResolveAll method on the DataContext.ChangeConflicts collection. All you have to do is decide which RefreshMode to use and if you want to automatically resolve deleted records."
Is Dynamic Data already doing something like this, or is it up to us to do it?
Thanks,
Tommy