DataTableMapping.DataSetTable Proprietà

Definizione

Ottiene o imposta il nome della tabella da un oggetto DataSet.

public:
 property System::String ^ DataSetTable { System::String ^ get(); void set(System::String ^ value); };
[System.Data.DataSysDescription("DataTableMapping_DataSetTable")]
public string DataSetTable { get; set; }
public string DataSetTable { get; set; }
[<System.Data.DataSysDescription("DataTableMapping_DataSetTable")>]
member this.DataSetTable : string with get, set
member this.DataSetTable : string with get, set
Public Property DataSetTable As String

Valore della proprietà

Nome della tabella da un oggetto DataSet.

Implementazioni

Attributi

Esempio

Nell'esempio seguente viene creato un DataTableMapping oggetto e vengono impostate alcune delle relative proprietà.

public void CreateDataTableMapping()
{
    DataTableMapping mapping = new DataTableMapping();
    mapping.SourceTable = "Categories";
    mapping.DataSetTable = "DataCategories";
}
Public Sub CreateDataTableMapping()
    Dim mapping As New DataTableMapping()
    mapping.SourceTable = "Categories"
    mapping.DataSetTable = "DataCategories"
End Sub

Si applica a

Vedi anche