Enum ChangeAction

The result of a merge operation - after the merge this reflects the operations applied to the record. Exists: A record with the same id was found, but both records were equal Insert: A record with the id didn't exist, so this records was inserted Update: A record with the same id was found, and the record was updated Delete: A record was identifed as an deletion, and this record was deleted. Duplicate: A record with the same id was alread used in a previous insert/update operation NotFound: A record from the source was flagged as a deletion, but was not found in the destination

Namespace: ETLBox
Assembly: ETLBox.dll
Syntax
    public enum ChangeAction

Fields

NameDescription
Delete
Duplicate
Exists
Insert
NotFound
Update