I have a small application that uses a dataset as a backingstore. I want to provide some amount of recoverability in the event of a program crash without having to constantly update and save my master file. If I were to call .WriteXml on my dataset to a "recovery" file, will that cause an implied "AcceptChanges" to be performed on my dataset? If so, can I clone my master dataset to a new object and save it instead?
Thanks, Matthew