Click or drag to resize
RelationPredicateBucket Constructor (IPredicate)
Initializes a new instance of the RelationPredicateBucket class.

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 RelationPredicateBucket(
	IPredicate filterToUse
)

Parameters

filterToUse
Type: SD.LLBLGen.Pro.ORMSupportClassesIPredicate
The filter to use.
Remarks
If filterToUse is a PredicateExpression, it will be set as the initial PredicateExpression object of this RelationalPredicateBucket. In that case, adding a predicate P to this bucket's PredicateExpression object will add P to the object passed in as filterToUse. To avoid this, add the object passed in as filterToUse separately to this bucket using the Add* methods on this bucket's PredicateExpression, and then add P using the Add* methods.
See Also