Click or drag to resize

UpsertRoles Enumeration

Options specifing what role(s) this column takes in the MERGE statement used by the SQLUpserter. It is common for a particular column to take part in multiple roles in a single upsert.

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
[FlagsAttribute]
public enum UpsertRoles
Members
  Member nameValueDescription
Insert1 The column should be added to the INSERT statement used when no match is found.
Update2 The column should be added to the UPDATE statement used when a match is found.
Match4 The column should be used as part of the filter for finding matching records.
See Also