Click or drag to resize
PredicateExpressionAddWithOr Method
Adds an IPredicate implementing object to the PredicateExpression with an 'Or'-operator. The object added can be a Predicate derived class or a PredicateExpression. If no objects are present yet in the PredicateExpression, the operator is ignored.

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
public IPredicateExpression AddWithOr(
	IPredicate predicateToAdd
)

Parameters

predicateToAdd
Type: SD.LLBLGen.Pro.ORMSupportClassesIPredicate
The IPredicate implementing object to add

Return Value

Type: IPredicateExpression
the PredicateExpression on which this method is called, for command chaining

Implements

IPredicateExpressionAddWithOr(IPredicate)
Exceptions
ExceptionCondition
ArgumentNullExceptionWhen predicateToAdd is null
See Also