SqlBulkCopy.ColumnMappings 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回 SqlBulkCopyColumnMapping 項目的集合。 資料行對應會定義資料來源中資料行和目的地中資料行之間的關聯性。
public:
property Microsoft::Data::SqlClient::SqlBulkCopyColumnMappingCollection ^ ColumnMappings { Microsoft::Data::SqlClient::SqlBulkCopyColumnMappingCollection ^ get(); };
public Microsoft.Data.SqlClient.SqlBulkCopyColumnMappingCollection ColumnMappings { get; }
member this.ColumnMappings : Microsoft.Data.SqlClient.SqlBulkCopyColumnMappingCollection
Public ReadOnly Property ColumnMappings As SqlBulkCopyColumnMappingCollection
屬性值
資料行對應的集合。 根據預設,它可以是空的集合。
備註
如果資料來源和目的地資料表的資料行數目相同,而且資料來源內每個來源資料行的序數位置符合對應目的地資料行的序數位置, ColumnMappings 則不需要集合。 不過,如果資料行計數不同,或序數位置不一致,您必須使用 ColumnMappings 來確保資料已複製到正確的資料行。
在執行大量複製作業期間,可以存取此集合,但無法變更。 任何變更的嘗試都會擲回 InvalidOperationException 。