<PackageReference Include="Microsoft.Data.SqlClient" Version="7.0.0" />

Microsoft.Data.SqlClient.SqlBulkCopyColumnOrderHint

public sealed class SqlBulkCopyColumnOrderHint
Defines the sort order for a column in a SqlBulkCopy instance's destination table, according to the clustered index on the table.
public string Column { get; set; }

Name of the destination column in the destination table for which the hint is being provided.

public SortOrder SortOrder { get; set; }

The sort order of the destination column in the destination table.

public SqlBulkCopyColumnOrderHint(string column, SortOrder sortOrder)