Class FilterOperator.Number
- Namespace
- MudBlazor
- Assembly
- MudBlazor.dll
Represents filters which are available for numeric values.
public static class FilterOperator.Number
- Inheritance
-
FilterOperator.Number
- Inherited Members
Remarks
Numeric filters support all numeric types, including int
, double
, decimal
, long
, short
, sbyte
, byte
, ulong
, ushort
, uint
, float
and BigInteger
.
Fields
Empty
Find null values.
public const string Empty = "is empty"
Field Value
Equal
Find numbers equal to the filter value.
public const string Equal = "="
Field Value
GreaterThan
Find numbers larger than the filter value.
public const string GreaterThan = ">"
Field Value
GreaterThanOrEqual
Find numbers larger than, or equal to, the filter value.
public const string GreaterThanOrEqual = ">="
Field Value
LessThan
Find numbers smaller than the filter value.
public const string LessThan = "<"
Field Value
LessThanOrEqual
Find numbers smaller than, or equal to, the filter value.
public const string LessThanOrEqual = "<="
Field Value
NotEmpty
Find values which are not null.
public const string NotEmpty = "is not empty"
Field Value
NotEqual
Find numbers different from the filter value.
public const string NotEqual = "!="