ClassCompositeFilterDescriptor
Represents a filtering descriptor which serves as a container for one or more child filtering descriptors.
Definition
Namespace:Telerik.DataSource
Assembly:Telerik.DataSource.dll
Syntax:
public class CompositeFilterDescriptor : FilterDescriptorBase, IFilterDescriptor
Inheritance: objectJsonObjectFilterDescriptorBaseCompositeFilterDescriptor
Implements:
Inherited Members
Constructors
CompositeFilterDescriptor()
Declaration
public CompositeFilterDescriptor()
Properties
FilterDescriptors
Gets or sets the filter descriptors that will be used for composition.
Declaration
public FilterDescriptorCollection FilterDescriptors { get; set; }
Property Value
The filter descriptors used for composition.
LogicalOperator
Gets or sets the logical operator used for composing of FilterDescriptors.
Declaration
public FilterCompositionLogicalOperator LogicalOperator { get; set; }
Property Value
FilterCompositionLogicalOperator
The logical operator used for composition.
Methods
CreateFilterExpression(ParameterExpression)
Creates a predicate filter expression combining FilterDescriptors expressions with LogicalOperator.
Declaration
protected override Expression CreateFilterExpression(ParameterExpression parameterExpression)
Parameters
parameterExpression
The parameter expression, which will be used for filtering.
Returns
A predicate filter expression.
Overrides
Serialize(IDictionary<string, object>)
for internal use
Declaration
protected override void Serialize(IDictionary<string, object> json)
Parameters
json
Overrides