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.4.0.0 (5.4.0)
Syntax public 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