DataSource for Entity Framework in WPF
C1.Data.DataSource Namespace / FilterOperator Enumeration

In This Topic
    FilterOperator Enumeration
    In This Topic
    Operator used in FilterDescriptor class.
    Syntax
    'Declaration
     
    Public Enum FilterOperator 
       Inherits System.Enum
    public enum FilterOperator : System.Enum 
    Members
    MemberDescription
    ContainsLeft operand must contain the right one.
    EndsWithLeft operand must end with the right one.
    IsContainedInLeft operand must be contained in the right one.
    IsEqualToLeft operand must be equal to the right one.
    IsGreaterThanLeft operand must be larger than or equal to the right one.
    IsGreaterThanOrEqualToLeft operand must be larger than the right one.
    IsLessThanLeft operand must be smaller than the right one.
    IsLessThanOrEqualToLeft operand must be smaller than or equal to the right one.
    IsNotEqualToLeft operand must be different from the right one.
    StartsWith// Left operand must start with the right one.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.Data.DataSource.FilterOperator

    See Also