| CorrelationFilterFunc Delegate | 
            Delegate which is used to compile an in-memory lambda to which is used to compare parent rows with child rows in nested-query executions.
            The lambda looks like:
            (parentValues, childValues) => LinqUtils.ValuesAreEqual(parentValues[parentFieldIndex], childValues[childFieldIndex]);
            
 
Namespace: SD.LLBLGen.Pro.LinqSupportClassesAssembly: SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.0.0.0 (5.0.0)
Syntaxpublic delegate bool CorrelationFilterFunc(
	Object[] parentValues,
	Object[] childValues
)
Public Delegate Function CorrelationFilterFunc ( 
	parentValues As Object(),
	childValues As Object()
) As Boolean
Parameters
- parentValues
 - Type: SystemObject
 - childValues
 - Type: SystemObject
 
Return Value
Type: 
Booleantrue if the child belongs to parent.
See Also