ChangeType Enum
Represents the type of change that occurred during synchronization.
Namespace
DbSyncKit.Core.Enum
Interfaces
  • IComparable
  • IFormattable
  • IConvertible
Base Types
  • object
  • ValueType
  • Enum
graph BT Type-->Base0["Enum"] Base0-->Base1["ValueType"] Base1-->Base2["object"] Type-.->Interface0["IComparable"] Type-.->Interface1["IFormattable"] Type-.->Interface2["IConvertible"] Type["ChangeType"] class Type type-node

Syntax

public enum ChangeType

Fields

Name Field Type Constant Value Summary
Added ChangeType 1
Indicates that an entity was added during synchronization.
static
AddedWithDeleted ChangeType 6
Indicates that an entity was added and deleted during synchronization.
static
AddedWithEdited ChangeType 4
Indicates that an entity was added and edited during synchronization.
static
All ChangeType 7
Represents all possible types of changes.
static
Deleted ChangeType 3
Indicates that an entity was deleted during synchronization.
static
Edited ChangeType 2
Indicates that an entity was edited during synchronization.
static
EditedWithDeleted ChangeType 5
Indicates that an entity was edited and deleted during synchronization.
static
None ChangeType 0
Indicates that an entity was no changes detected during synchronization.
static