DelegatePredicateCallback Delegate | 
 
            Callback for the DelegatePredicate, which is used to perform the interpretation of the passed in entity. 
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntaxpublic delegate bool DelegatePredicateCallback(
	IEntityCore toInterpret
)
Public Delegate Function DelegatePredicateCallback ( 
	toInterpret As IEntityCore
) As Boolean
Parameters
- toInterpret
 - Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityCore
The entity to interpret 
Return Value
Type: 
Booleantrue if the entity is accepted by the callback, otherwise false.
See Also