When use FullEnumerationSimpleSyncProvider and SqlMetadataStore, I use the following code to save a conflict and want to resolve this later. But I did not find a way to query/retrieve the conflict metadata.
Can anyone tell me how to achieve this?
void OnItemConflicting(object sender, SimpleSyncItemConflictingEventArgs e)
{
// Set the resolution action for concurrency conflicts.
e.SetResolutionAction(ConflictResolutionAction.SaveConflict);
}
Zhongchen Zhou