MemberPredicate Constructor (String, MemberOperator, IPredicate, Boolean) | 
  
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntaxpublic MemberPredicate(
	string memberName,
	MemberOperator operatorToUse,
	IPredicate filter,
	bool negate
)
Public Sub New ( 
	memberName As String,
	operatorToUse As MemberOperator,
	filter As IPredicate,
	negate As Boolean
)
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