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.10.0.0 (5.10.0)
Syntaxprotected void CreateSingleTargetDeleteDQUsingCorrelatedSubQuery(
	IFieldPersistenceInfo[] fieldsPersistenceInfo,
	IActionQuery query,
	IPredicate deleteFilter,
	IRelationCollection relationsToWalk
)
Protected Sub CreateSingleTargetDeleteDQUsingCorrelatedSubQuery ( 
	fieldsPersistenceInfo As IFieldPersistenceInfo(),
	query As IActionQuery,
	deleteFilter As IPredicate,
	relationsToWalk As IRelationCollection
)
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| Exception | Condition | 
|---|
| ArgumentNullException | When persistenceInfo is null or when deleteFilter is null or when relationsToWalk is null | 
See Also