ComparisonCondition
Represents a comparison condition (e.g., column = value, column > value)
public sealed record ComparisonCondition : WhereCondition, IEquatable<WhereCondition>, IEquatable<ComparisonCondition>
Properties
Left
public ColumnInfo Left { get; }
Gets the left-hand side column of the comparison.
Operator
public ComparisonOperator Operator { get; }
Gets the comparison operator.
Right
public string Right { get; }
Gets the right-hand side value or expression of the comparison.