Table of Contents

Class CompositeFilterDescriptor

Namespace
Radzen
Assembly
Radzen.Blazor.dll

Represents a filter in a component that supports filtering.

public class CompositeFilterDescriptor
Inheritance
CompositeFilterDescriptor
Inherited Members

Constructors

CompositeFilterDescriptor()

public CompositeFilterDescriptor()

Properties

FilterOperator

Gets or sets the operator which will compare the property value with FilterValue.

public FilterOperator? FilterOperator { get; set; }

Property Value

FilterOperator?

The filter operator.

FilterValue

Gets or sets the value to filter by.

public object FilterValue { get; set; }

Property Value

object

The filter value.

Filters

Gets or sets the filters.

public IEnumerable<CompositeFilterDescriptor> Filters { get; set; }

Property Value

IEnumerable<CompositeFilterDescriptor>

The filters.

LogicalFilterOperator

Gets or sets the logic used to combine the outcome of filtering by FilterValue.

public LogicalFilterOperator LogicalFilterOperator { get; set; }

Property Value

LogicalFilterOperator

The logical filter operator.

Property

Gets or sets the name of the filtered property.

public string Property { get; set; }

Property Value

string

The property.