<PackageReference Include="System.Data.SqlClient" Version="4.8.4" />

SqlBulkCopyColumnMapping

public sealed class SqlBulkCopyColumnMapping
Defines the mapping between a column in a SqlBulkCopy instance's data source and a column in the instance's destination table.
namespace System.Data.SqlClient { public sealed class SqlBulkCopyColumnMapping { public string DestinationColumn { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } public int DestinationOrdinal { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } public string SourceColumn { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } public int SourceOrdinal { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } set { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } public SqlBulkCopyColumnMapping() { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public SqlBulkCopyColumnMapping(int sourceColumnOrdinal, int destinationOrdinal) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public SqlBulkCopyColumnMapping(int sourceColumnOrdinal, string destinationColumn) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public SqlBulkCopyColumnMapping(string sourceColumn, int destinationOrdinal) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } public SqlBulkCopyColumnMapping(string sourceColumn, string destinationColumn) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient); } } }