Class CompositeFilterDescriptor
Represents a filter in a component that supports filtering.
Inheritance
System.Object
CompositeFilterDescriptor
Namespace: Radzen
Assembly: Radzen.Blazor.dll
Syntax
public class CompositeFilterDescriptor : object
Properties
FilterOperator
Gets or sets the operator which will compare the property value with FilterValue.
Declaration
public FilterOperator? FilterOperator { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<FilterOperator> | The filter operator. |
Filters
Gets or sets the filters.
Declaration
public IEnumerable<CompositeFilterDescriptor> Filters { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<CompositeFilterDescriptor> | The filters. |
FilterValue
Gets or sets the value to filter by.
Declaration
public object FilterValue { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The filter value. |
LogicalFilterOperator
Gets or sets the logic used to combine the outcome of filtering by FilterValue.
Declaration
public LogicalFilterOperator LogicalFilterOperator { get; set; }
Property Value
Type | Description |
---|---|
LogicalFilterOperator | The logical filter operator. |
Property
Gets or sets the name of the filtered property.
Declaration
public string Property { get; set; }
Property Value
Type | Description |
---|---|
System.String | The property. |