Click or drag to resize
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) => FieldUtilities.ValuesAreEqual(parentValues[parentFieldIndex], childValues[childFieldIndex]);

Namespace:  SD.LLBLGen.Pro.QuerySpec
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public delegate bool CorrelationFilterFunc(
	Object[] parentValues,
	Object[] childValues
)

Parameters

parentValues
Type: SystemObject
childValues
Type: SystemObject

Return Value

Type: Boolean
true if the child belongs to parent.
See Also