Click or drag to resize
MemberPredicate Constructor (String, MemberOperator, IPredicate, Boolean)
Initializes a new instance of the MemberPredicate 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 MemberPredicate(
	string memberName,
	MemberOperator operatorToUse,
	IPredicate filter,
	bool negate
)

Parameters

memberName
Type: SystemString
Name of the member of the entity this predicate is applied on, on which filter has to be applied.
operatorToUse
Type: SD.LLBLGen.Pro.ORMSupportClassesMemberOperator
The operator to use.
filter
Type: SD.LLBLGen.Pro.ORMSupportClassesIPredicate
The filter to apply to elements of the member (or the member itself in case of a single instance).
negate
Type: SystemBoolean
If true, the result of the MemberPredicate will be negated prior to return.
See Also