Click or drag to resize
IPredicateExpressionAdd Method
Adds an IPredicate implementing object to the PredicateExpression. This can be a Predicate derived class or a PredicateExpression. If no object is present yet in the PredicateExpression, no operator is added, otherwise the object is added with an 'And'-operator.

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
IPredicateExpression Add(
	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
Exceptions
ExceptionCondition
ArgumentNullExceptionWhen prPredicateToAdd is null
See Also