InterpretSetValueCallback Delegate |
Callback for the AggregateSetPredicate, which is used to interpret a passed in entity and return the value to add to the set of values to aggregate
in the AggregateSetPredicate.
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntax public delegate Object InterpretSetValueCallback(
IEntityCore toInterpret
)
Public Delegate Function InterpretSetValueCallback (
toInterpret As IEntityCore
) As Object
Parameters
- toInterpret
- Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityCore
The entity to interpret
Return Value
Type:
Objectthe interpretation result of the passed in entity. This value is then added to the list of values to aggregate in the AggregateSetPredicate
See Also