Table of Contents

Class FilterExpression

Namespace
SharpConsoleUI.Controls
Assembly
SharpConsoleUI.dll

Represents a parsed filter expression.

public class FilterExpression
Inheritance
FilterExpression
Inherited Members
Extension Methods

Properties

ColumnName

Target column name, or null for all columns.

public string? ColumnName { get; init; }

Property Value

string

Operator

The comparison operator.

public FilterOperator Operator { get; init; }

Property Value

FilterOperator

RawText

The raw input text.

public string RawText { get; init; }

Property Value

string

Value

The filter value to match against.

public string Value { get; init; }

Property Value

string