SqlSyncAdapterBuilder.RowGuidColumn Property

Gets or sets a column of uniqueidentifier data type that is used to identify rows in the base table and the tombstone table.

Namespace:  Microsoft.Synchronization.Data.Server
Assembly:  Microsoft.Synchronization.Data.Server (in Microsoft.Synchronization.Data.Server.dll)

Syntax

'Declaration
Public Property RowGuidColumn As String
    Get
    Set
'Usage
Dim instance As SqlSyncAdapterBuilder
Dim value As String

value = instance.RowGuidColumn

instance.RowGuidColumn = value
public string RowGuidColumn { get; set; }
public:
property String^ RowGuidColumn {
    String^ get ();
    void set (String^ value);
}
member RowGuidColumn : string with get, set
function get RowGuidColumn () : String
function set RowGuidColumn (value : String)

Property Value

Type: System.String
The name of the column in the base table and the tombstone table.

Remarks

To specify this property, a column that has the same name and the appropriate data type must be present in both the base table and the tombstone table. If this property is not specified, the primary keys of the tables are used to identify rows during synchronization.

See Also

Reference

SqlSyncAdapterBuilder Class

Microsoft.Synchronization.Data.Server Namespace