Options used when deleting an entity record. Controls whether associated actions and AI operations should be executed during the deletion process.

Constructors

Properties

ReplayOnly?: boolean = false

When set to true, the save operation will BYPASS Validate() and the actual process of deleting the record from the database but WILL invoke any associated actions (AI Actions, Entity Actions, etc...) Subclasses can also override the Delete() method to provide custom logic that will be invoked when ReplayOnly is set to true

SkipEntityAIActions?: boolean = false

If set to true, an AI actions associated with the entity will be skipped during the delete operation

SkipEntityActions?: boolean = false

If set to true, any Entity Actions associated with invocation types of Delete will be skipped during the delete operation