Click or drag to resize

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.5.0.0 (5.5.18.1019)
Syntax
public delegate Object InterpretSetValueCallback(
	IEntityCore toInterpret
)

Parameters

toInterpret
Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityCore
The entity to interpret

Return Value

Type: Object
the interpretation result of the passed in entity. This value is then added to the list of values to aggregate in the AggregateSetPredicate
See Also