Enum MergeColumnUsage
C#
public enum MergeColumnUsage
Fields
Compare | Specifies that the column will only be used in comparing rows for a merge match. |
CompareInsert | Specifies that a column with both compare and insert but not update. |
CompareUpdate | Specifies that a column with both compare and update but not insert. |
CompareUpdateInsert | Specifies that a column with compare, update, and insert. |
Exclude | Specifies that the column will be excluded entirely from the merge operation. |
Insert | Specifies that the column will only be used to insert new target table values when a row does not match. |
Update | Specifies that the column will only be used to update target table values when a row matches. |
UpdateInsert | Specifies that a column with both update and insert but not compare. |