If I want to resubmit changes, do I have to redefine them after making my first submit, or can I simply call the SubmitChanges() method again as in the following code:
DB.SubmitChanges();
Thread.Sleep(1000);
DB.SubmitChanges();
Edit: The reason why I want to do this is because I have two different linq queries that handle conflicts using RefreshMode.OverwriteCurrentValues. One of the queries is more important than the other, and in order to trump the other, my best idea (and it's not great I admit) is to just wait a while and resubmit the changes.