Click or drag to resize
UnitOfWork2GetUpdateQueue Method
Gets the update queue, which is a List of ActionQueueElements(Of IEntity2) objects which have been placed in the update queue. This queue is empty unless ConstructSaveProcessQueues has been called, or Commit has been called, which calls ConstructSaveProcessQueues under the hood. If this method is called after Commit, and Commit succeeded, the entities in the queue returned are saved succesfully. Calling Reset will not clear the queues, only ConstructSaveProcessQueues or Commit will.

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 List<ActionQueueElement<IEntity2>> GetUpdateQueue()

Return Value

Type: ListActionQueueElementIEntity2
Readonly arraylist with the entities in the insert queue.
See Also