Combines the first predicate with the second using the logical "or".
Namespace: Breeze.Sharp.Core
Assembly: Breeze.Sharp (in Breeze.Sharp.dll) Version: 0.6.0.5 (0.6.0.5)
Syntax
public static Expression<Func<T, bool>> Or<T>( this Expression<Func<T, bool>> first, Expression<Func<T, bool>> second )
Parameters
- first
- Type: System.Linq.ExpressionsExpressionFuncT, Boolean
- second
- Type: System.Linq.ExpressionsExpressionFuncT, Boolean
Type Parameters
- T
Return Value
Type: ExpressionFuncT, BooleanUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type ExpressionFuncT, Boolean. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).See Also