Click or drag to resize
DynamicQueryEngineBaseCreateSingleTargetDeleteDQUsingCorrelatedSubQuery Method
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.3.0.0 (5.3.0)
Syntax
protected void CreateSingleTargetDeleteDQUsingCorrelatedSubQuery(
	IFieldPersistenceInfo[] fieldsPersistenceInfo,
	IActionQuery query,
	IPredicate deleteFilter,
	IRelationCollection relationsToWalk
)

Parameters

fieldsPersistenceInfo
Type: SD.LLBLGen.Pro.ORMSupportClassesIFieldPersistenceInfo
Array of IFieldPersistenceInfo objects to use to build the delete query
query
Type: SD.LLBLGen.Pro.ORMSupportClassesIActionQuery
The query object to fill.
deleteFilter
Type: SD.LLBLGen.Pro.ORMSupportClassesIPredicate
A complete IPredicate implementing object which contains the filter for the rows to delete
relationsToWalk
Type: SD.LLBLGen.Pro.ORMSupportClassesIRelationCollection
list of EntityRelation objects, which will be used to formulate a second FROM clause with INNER JOINs.
Exceptions
ExceptionCondition
ArgumentNullExceptionWhen persistenceInfo is null or when deleteFilter is null or when relationsToWalk is null
See Also