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
Operator
The comparison operator.
public FilterOperator Operator { get; init; }
Property Value
RawText
The raw input text.
public string RawText { get; init; }
Property Value
Value
The filter value to match against.
public string Value { get; init; }