Method True
True<T>()
Creates a predicate expression that always evaluates to true
.
public static Expression<Func<T, bool>> True<T>()
Returns
- Expression<Func<T, bool>>
A predicate expression that always evaluates to
true
.
Type Parameters
T
The type of the parameter in the expression.