DataTableMapping Constructor (String^, String^, array<DataColumnMapping^>^)
.NET Framework (current version)
Initializes a new instance of the DataTableMapping class when given a source table name, a DataTable name, and an array of DataColumnMapping objects.
Assembly: System.Data (in System.Data.dll)
public: DataTableMapping( String^ sourceTable, String^ dataSetTable, array<DataColumnMapping^>^ columnMappings )
Parameters
- sourceTable
-
Type:
System::String^
The case-sensitive source table name from a data source.
- dataSetTable
-
Type:
System::String^
The table name from a DataSet to map to.
- columnMappings
-
Type:
array<System.Data.Common::DataColumnMapping^>^
An array of DataColumnMapping objects.
The following example creates a DataTableMapping object, sets some of its properties, and copies its ColumnMappings to an array. This example assumes that a DataColumnMappingCollection has been created.
.NET Framework
Available since 1.1
Available since 1.1
Show: