Click or drag to resize
MemberOperator Enumeration
Enum which specifies when the MemberPredicate should be considered 'true'

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 enum MemberOperator
Members
  Member nameValueDescription
All0 The contained filter in the MemberPredicate has to return true for all elements in the specified member.
Any1 The contained filter in the MemberPredicate has to return true for at least one element in the specified member.
Null2 The specified member has no data. The specified filter of the MemberPredicate is ignored. This operator can for example be used to test if the specified member is set, e.g. filter on all OrderEntity instances which have Customer set to an instance.
See Also