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.4.0.0 (5.4.0)
Syntax List<Object> GetFrameworkElementsInPredicate()
Function GetFrameworkElementsInPredicate As List(Of Object)
Return Value
Type:
ListObjectList 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