ConflictResolutionPolicy.ResolutionPath Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the path which is present in each item in the Azure Cosmos DB service for last writer wins conflict-resolution. This path must be present in each item and must be an integer value. In case of a conflict occurring on a item, the item with the higher integer value in the specified path will be picked. If the path is unspecified, by default the time stamp path will be used.
public string ResolutionPath { get; set; }
member this.ResolutionPath : string with get, set
Public Property ResolutionPath As String
Property Value
The path to check values for last-writer wins conflict resolution. That path is a rooted path of the property in the item, such as "/name/first".
Examples
conflictResolutionPolicy.ConflictResolutionPath = "/name/first";
Remarks
This value should only be set when using LastWriterWins
Applies to
Azure SDK for .NET