Click or drag to resize
UnitOfWorkCallBackScheduleSlot Enumeration
Enum definition to tell the UnitOfWork that the passed in callback should be executed in the slot specified. Entities are executed in the order: Insert, Update, Delete.

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 UnitOfWorkCallBackScheduleSlot
Members
  Member nameValueDescription
PreEntityInsert0 Execute the callback before the first entity is inserted.
PreEntityUpdate1 Execute the callback after the last entity has been inserted but before the first entity will be updated.
PreEntityDelete2 Execute the callback after the last entity has been updated but before the first entity will be deleted.
PostEntityDelete3 Execute the callback after the last entity has been deleted.
See Also