RowIdColumns-Eigenschaft
Ruft eine Auflistung der Namen von Spalten ab, die die eindeutige ID für jede in der Tabelle enthaltene Zeile bilden.
Namespace: Microsoft.Synchronization.Data
Assembly: Microsoft.Synchronization.Data (in Microsoft.Synchronization.Data.dll)
Syntax
'Declaration
Public ReadOnly Property RowIdColumns As Collection(Of String)
Get
'Usage
Dim instance As DbSyncAdapter
Dim value As Collection(Of String)
value = instance.RowIdColumns
public Collection<string> RowIdColumns { get; }
public:
property Collection<String^>^ RowIdColumns {
Collection<String^>^ get ();
}
member RowIdColumns : Collection<string>
function get RowIdColumns () : Collection<String>
Eigenschaftenwert
Typ: System.Collections.ObjectModel. . :: . .Collection< (Of < ( <'String> ) > ) >
Eine Auflistung der Namen von Spalten, die die eindeutige ID für jede in der Tabelle enthaltene Zeile bilden.
Beispiele
Das folgende Codebeispiel erstellt ein SyncAdapter-Objekt für die Customer-Tabelle und legt fest, dass die CustomerId-Spalte zum Identifizieren jeder Zeile in der Tabelle verwendet werden soll.
DbSyncAdapter adapterCustomer = new DbSyncAdapter("Customer");
//Specify the primary key, which Sync Framework uses
//to identify each row during synchronization.
adapterCustomer.RowIdColumns.Add("CustomerId");
Dim adapterCustomer As New DbSyncAdapter("Customer")
'Specify the primary key, which Sync Framework uses
'to identify each row during synchronization.
adapterCustomer.RowIdColumns.Add("CustomerId")