DataTableMapping.SourceTable Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit le nom de la table source sensible à la casse à partir d’une source de données.
public:
property System::String ^ SourceTable { System::String ^ get(); void set(System::String ^ value); };
[System.Data.DataSysDescription("DataTableMapping_SourceTable")]
public string SourceTable { get; set; }
public string SourceTable { get; set; }
[<System.Data.DataSysDescription("DataTableMapping_SourceTable")>]
member this.SourceTable : string with get, set
member this.SourceTable : string with get, set
Public Property SourceTable As String
Valeur de propriété
Nom de la table source sensible à la casse d’une source de données.
Implémente
- Attributs
Exemples
L’exemple suivant crée un DataTableMapping objet et définit certaines de ses propriétés.
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