MergeOption Enum

Definition

The different ways that new objects loaded from the database can be merged with existing objects already in memory.

public enum MergeOption
type MergeOption = 
Public Enum MergeOption
Inheritance
MergeOption

Fields

AppendOnly 0

Will only append new (top level-unique) rows. This is the default behavior.

NoTracking 3

Will not modify cache.

OverwriteChanges 1

Same behavior as LoadOption.OverwriteChanges.

PreserveChanges 2

Same behavior as LoadOption.PreserveChanges.

Applies to