Click or drag to resize
IPredicateGetFrameworkElementsInPredicate Method
Gets a list of all framework objects (fields, expression objects etc.) which are located in this IPredicate instance. E.g. a FieldCompareValuePredicate will return a list with 1 IEntityFieldCore instance: the field to compare. If no framework elements are present in the predicate, the base implementation is used, which returns an empty list. This routine is used to gather information for Linq queries.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
List<Object> GetFrameworkElementsInPredicate()

Return Value

Type: ListObject
List with 0 or more framework objects
Remarks
IPredicateExpression instances return a list of the elements in the predicate expression, which can be predicateexpressions as well so it's not recursive.
See Also