How to query sync conflicts for later resolve when ue FullEnumerationSimpleSyncProvider and SqlMetadataStore

Unanswered How to query sync conflicts for later resolve when ue FullEnumerationSimpleSyncProvider and SqlMetadataStore

  • sábado, 14 de abril de 2012 2:40
     
      Tiene código

    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