Click or drag to resize

ObjectGraphUtils.DetermineActionQueues<TEntity> Method (TEntity, List<ActionQueueElement<TEntity>>, List<ActionQueueElement<TEntity>>, Boolean)

Determines the action queues for the entity passed in. The action queues contain the entities to process in the right order.

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 void DetermineActionQueues<TEntity>(
	TEntity entityToSave,
	ref List<ActionQueueElement<TEntity>> insertQueue,
	ref List<ActionQueueElement<TEntity>> updateQueue,
	bool refetchAfterAction
)
where TEntity : class, IEntityCore

Parameters

entityToSave
Type: TEntity
Entity to save.
insertQueue
Type: System.Collections.Generic.List<ActionQueueElement<TEntity>>
Insert queue.
updateQueue
Type: System.Collections.Generic.List<ActionQueueElement<TEntity>>
Update queue.
refetchAfterAction
Type: System.Boolean
flag to set in the new actionobjects if the entity to save has to be refetched after the action

Type Parameters

TEntity
See Also