Click or drag to resize

DynamicQueryEngineBase.CreateDeleteDQ Method (IFieldPersistenceInfo[], DbConnection, List<IPredicate>)

Creates a new Delete Query object which is ready to use.

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 IActionQuery CreateDeleteDQ(
	IFieldPersistenceInfo[] fieldsPersistenceInfo,
	DbConnection connectionToUse,
	List<IPredicate> pkFilters
)

Parameters

fieldsPersistenceInfo
Type:SD.LLBLGen.Pro.ORMSupportClasses.IFieldPersistenceInfo[]
Array of IFieldPersistenceInfo objects to use to build the delete query
connectionToUse
Type: System.Data.Common.DbConnection
The connection to use for the query
pkFilters
Type: System.Collections.Generic.List<IPredicate>
Arraylist, with for each entity (from root to leaf) the PK filter for that entity.

Return Value

Type: IActionQuery
IActionQuery instance which is ready to be used.
Exceptions
ExceptionCondition
ArgumentNullExceptionWhen persistenceInfo is null
Remarks
Generic version
See Also