FilterDescriptor<T>
Class
Allows filtering by a lambda expression.
Definition
Namespace:Telerik.Windows.Data
Assembly:Telerik.Windows.Data.dll
Type Parameters:
T
Syntax:
C#
public class FilterDescriptor<T> : FilterDescriptorBase, ISuspendNotifications, IFilterDescriptor, INotifyPropertyChanged
Inheritance: objectInheritanceContextPropagatorDescriptorBaseFilterDescriptorBaseFilterDescriptor<T>
Implements:
Inherited Members
Constructors
C#
public FilterDescriptor()
Fields
FilteringExpressionProperty
DependencyProperty
Identifies the FilteringExpression dependency property.
C#
public static readonly DependencyProperty FilteringExpressionProperty
Properties
Gets or sets the filter expression.
C#
public Expression<Func<T, bool>> FilteringExpression { get; set; }
The filter expression.
Methods
Creates a predicate filter expression used for collection filtering.
C#
protected override Expression CreateFilterExpression(ParameterExpression parameterExpression)
The parameter expression, which will be used for filtering.
Returns:A predicate filter expression.
Overrides: