Click or drag to resize

UnitOfWorkAddInsertMultiCall Method

Adds a call to collection.InsertMulti(selectQuery) to insert entities directly in the database using the passed in select query The call will be executed inside the transaction used in Commit and will be executed after the last entity has been inserted but before the PostEntityInsert callbacks.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.11.0.0 (5.11.23.1114)
Syntax
public virtual void AddInsertMultiCall(
	IEntityCollection collection,
	DynamicQuery selectQuery
)

Parameters

collection
Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityCollection
Collection object to call InsertMulti on.
selectQuery
Type: SD.LLBLGen.Pro.QuerySpecDynamicQuery
See Also