Click or drag to resize
ObjectGraphUtils.DetermineActionQueues<TEntity, TCollection> Method (TCollection, List<ActionQueueElement<TEntity>>, List<ActionQueueElement<TEntity>>)
Determines the action queues for the entity collection 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.2.0.0 (5.2.17.0403)
Syntax
public void DetermineActionQueues<TEntity, TCollection>(
	TCollection entityCollectionToSave,
	ref List<ActionQueueElement<TEntity>> insertQueue,
	ref List<ActionQueueElement<TEntity>> updateQueue
)
where TEntity : class, IEntityCore
where TCollection : class, IEntityCollectionCore

Parameters

entityCollectionToSave
Type: TCollection
Entity collection to save.
insertQueue
Type: System.Collections.Generic.List<ActionQueueElement<TEntity>>
Insert queue.
updateQueue
Type: System.Collections.Generic.List<ActionQueueElement<TEntity>>
Update queue.

Type Parameters

TEntity
TCollection
See Also