Table of Contents

Class FilterOperator.DateTime

Namespace
MudBlazor
Assembly
MudBlazor.dll

Represents filters which are available for date and time values.

public static class FilterOperator.DateTime
Inheritance
FilterOperator.DateTime
Inherited Members

Fields

After

Find values after the filter date.

public const string After = "is after"

Field Value

string

Before

Find values before the filter date.

public const string Before = "is before"

Field Value

string

Empty

Find null values.

public const string Empty = "is empty"

Field Value

string

Is

Find values matching the filter date.

public const string Is = "is"

Field Value

string

IsNot

Find values different from the filter date.

public const string IsNot = "is not"

Field Value

string

NotEmpty

Find any non-null value.

public const string NotEmpty = "is not empty"

Field Value

string

OnOrAfter

Find values on or after the filter date.

public const string OnOrAfter = "is on or after"

Field Value

string

OnOrBefore

Find values on or before the filter date.

public const string OnOrBefore = "is on or before"

Field Value

string