Click or drag to resize
SingleStatementQueryAction Enumeration
Enum which is used in Auditors, to signal that this single statement query action is about to be executed and that the framework would like to know if the auditor expects to have entities to save after the statement so a transaction should be started.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public enum SingleStatementQueryAction
Members
  Member nameValueDescription
NewEntityInsert0 An insert of a new entity is about to be started
ExistingEntityUpdate1 An update of an existing entity is about to be started
EntityDelete2 A delete of an existing entity is about to be started
DirectUpdateEntities3 A direct update of entities in the database with a single update statement is about to be started
DirectDeleteEntities4 A direct delete of entities in the database with a single delete statement is about to be started
See Also