Represents a filter in a component that supports filtering.
Object
Namespace: Radzen
Assembly: Radzen.Blazor.dll
public class CompositeFilterDescriptorRepresents a filter in a component that supports filtering.
public CompositeFilterDescriptor()Gets or sets the operator which will compare the property value with FilterValue.
public FilterOperator? FilterOperator { get; set; }
| Type | Description |
|---|---|
| FilterOperator? | Gets or sets the operator which will compare the property value with FilterValue. |
Gets or sets the name of the filtered property.
public string FilterProperty { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the name of the filtered property. |
Gets or sets the value to filter by.
public object FilterValue { get; set; }
| Type | Description |
|---|---|
| object | Gets or sets the value to filter by. |
Gets or sets the filters.
public IEnumerable<CompositeFilterDescriptor> Filters { get; set; }
| Type | Description |
|---|---|
| IEnumerable<CompositeFilterDescriptor> | Gets or sets the filters. |
Gets or sets the logic used to combine the outcome of filtering by FilterValue.
public LogicalFilterOperator LogicalFilterOperator { get; set; }
| Type | Description |
|---|---|
| LogicalFilterOperator | Gets or sets the logic used to combine the outcome of filtering by FilterValue. |
Gets or sets the name of the filtered property.
public string Property { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the name of the filtered property. |
Gets or sets the property type.
public Type Type { get; set; }
| Type | Description |
|---|---|
| Type | Gets or sets the property type. |