DataTableMapping.SourceTable Propiedad

Definición

Obtiene o establece el nombre de tabla de origen de un origen de datos (con distinción entre mayúsculas y minúsculas).

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

Valor de propiedad

Nombre de tabla de origen de un origen de datos (con distinción entre mayúsculas y minúsculas).

Implementaciones

Atributos

Ejemplos

En el ejemplo siguiente se crea un DataTableMapping objeto y se establecen algunas de sus propiedades.

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

Se aplica a

Consulte también