Share via


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
<DefaultValueAttribute(Nothing)> _
Public Property RowGuidColumn As String
'Usage
Dim instance As SqlSyncAdapterBuilder
Dim value As String

value = instance.RowGuidColumn

instance.RowGuidColumn = value
[DefaultValueAttribute(null)] 
public string RowGuidColumn { get; set; }
[DefaultValueAttribute(nullptr)] 
public:
property String^ RowGuidColumn {
    String^ get ();
    void set (String^ value);
}
/** @property */
public String get_RowGuidColumn ()

/** @property */
public void set_RowGuidColumn (String value)
public function get RowGuidColumn () : String

public function set RowGuidColumn (value : String)

Property Value

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
SqlSyncAdapterBuilder Members
Microsoft.Synchronization.Data.Server Namespace