Click or drag to resize
UnitOfWork2AddCollectionForSave Method (IEntityCollection2, Boolean, Boolean)
Adds the collection with entities for saving. When the UnitOfWork is committed, the entities in the collection are added to the correct process bins to make sure the order is correct.

Namespace: SD.LLBLGen.Pro.ORMSupportClasses
Assembly: SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.0.0.0 (5.0.0)
Syntax
public virtual void AddCollectionForSave(
	IEntityCollection2 collectionToSave,
	bool refetch,
	bool recurse
)

Parameters

collectionToSave
Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityCollection2
collection with entities to be added for saving
refetch
Type: SystemBoolean
When true, it will refetch all entities saved after the save action.
recurse
Type: SystemBoolean
When true, the entities in the collection will be saved recursively.
See Also