SqlBulkCopyColumnMapping
Defines the mapping between a column in a SqlBulkCopy instance's data source and a column in the instance's destination table.
Name of the column being mapped in the destination database table.
Ordinal value of the destination column within the destination table.
Name of the column being mapped in the data source.
The ordinal position of the source column within the data source.
public SqlBulkCopyColumnMapping()
Parameterless constructor that initializes a new SqlBulkCopyColumnMapping object.
Creates a new column mapping, using column ordinals to refer to source and destination columns.
Creates a new column mapping, using a column ordinal to refer to the source column and a column name for the target column.
Creates a new column mapping, using a column name to refer to the source column and a column ordinal for the target column.
Creates a new column mapping, using column names to refer to source and destination columns.