Link Search Menu Expand Document

KeyColumnReturnBehavior


This enum is used to define how the push operations (i.e.: Insert, InsertAll, Merge and MergeAll) behaves when returning the value from the column columns (i.e.: Primary and Identity).

Enum Values

Below is the list of enum values.

NameDescription
PrimaryReturns the value of the primary column.
IdentityReturns the value of the identity column.
PrimaryOrElseIdentityReturns the coalesced value of the primary and identity columns. This is the default value.
IdentityOrElsePrimaryReturns the coalesced value of the identity and primary columns.