DataSource for Entity Framework in WPF
C1.Data.DataSource Namespace / FilterDescriptor Class / FilterDescriptor Constructor / FilterDescriptor Constructor(String,FilterOperator,Object)
The property path to use for filtering.
The kind of comparison to use.
The value to use when filtering.

In This Topic
    FilterDescriptor Constructor(String,FilterOperator,Object)
    In This Topic
    Initializes a new instance of the FilterDescriptor class with the specified property to use for filtering, the operator to use when evaluating the filtering check, and the filter value.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal propertyPath As String, _
       ByVal filterOperator As FilterOperator, _
       ByVal filterValue As Object _
    )
    public FilterDescriptor( 
       string propertyPath,
       FilterOperator filterOperator,
       object filterValue
    )

    Parameters

    propertyPath
    The property path to use for filtering.
    filterOperator
    The kind of comparison to use.
    filterValue
    The value to use when filtering.
    See Also