DataAdapter::TableMappings Property
.NET Framework (current version)
Gets a collection that provides the master mapping between a source table and a DataTable.
Assembly: System.Data (in System.Data.dll)
public: property DataTableMappingCollection^ TableMappings { DataTableMappingCollection^ get(); }
Property Value
Type: System.Data.Common::DataTableMappingCollection^A collection that provides the master mapping between the returned records and the DataSet. The default value is an empty collection.
When reconciling changes, the DataAdapter uses the DataTableMappingCollection collection to associate the column names used by the data source with the column names used by the DataSet.
The following example uses a derived class, OleDbDataAdapter, to add DataTableMapping objects to its TableMappings collection and display a list of those mapped source tables. This example assumes that an OleDbDataAdapter has already been created.
.NET Framework
Available since 1.1
Available since 1.1
Show: