UnitOfWorkGetUpdateQueue Method |
Gets the update queue, which is a list of ActionQueueElements(of IEntity) 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.1.0.0 (5.1.0)
Syntax public List<ActionQueueElement<IEntity>> GetUpdateQueue()
Public Function GetUpdateQueue As List(Of ActionQueueElement(Of IEntity))
Return Value
Type:
ListActionQueueElementIEntityList of ActionQueueElement(of IEntity) elements with the entities in the insert queue.
See Also