Enables the efficient, dynamic composition of query predicates.
From: http://petemontgomery.wordpress.com/2011/02/10/a-universal-predicatebuilder/
with minor mods.
Inheritance Hierarchy
Breeze.Sharp.CorePredicateBuilder
Namespace: Breeze.Sharp.Core
Assembly: Breeze.Sharp (in Breeze.Sharp.dll) Version: 0.6.0.5 (0.6.0.5)
Syntax
The PredicateBuilder type exposes the following members.
Methods
Name | Description | |
---|---|---|
AndT |
Combines the first predicate with the second using the logical "and".
| |
CreateT |
Creates a predicate expression from the specified lambda expression.
| |
FalseT |
Creates a predicate that evaluates to false.
| |
NotT |
Negates the predicate.
| |
OrT |
Combines the first predicate with the second using the logical "or".
| |
TrueT |
Creates a predicate that evaluates to true.
|
See Also