//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner markash // @backupOwner dsimmons //------------------------------------------------------------------------------ namespace System.Data.Objects { /// /// /// public enum MergeOption { /// /// Will only append new (top level-unique) rows. This is the default behavior. /// AppendOnly = 0, /// /// Same behavior as LoadOption.OverwriteChanges. /// OverwriteChanges = LoadOption.OverwriteChanges, /// /// Same behavior as LoadOption.PreserveChanges. /// PreserveChanges = LoadOption.PreserveChanges, /// /// Will not modify cache. /// NoTracking = 3, } }