UnitOfWork2GetInsertQueue Method |
Gets the insert queue, which is a list of ActionQueueElement(of IEntity2) objects which have been placed in the insert 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.4.0.0 (5.4.0)
Syntax public List<ActionQueueElement<IEntity2>> GetInsertQueue()
Public Function GetInsertQueue As List(Of ActionQueueElement(Of IEntity2))
Return Value
Type:
ListActionQueueElementIEntity2List with the entities in the insert queue.
See Also