Class SqlBetweenConditionNode
- Namespace
- LfrlAnvil.Sql.Expressions.Logical
- Assembly
- LfrlAnvil.Sql.Core.dll
Represents an SQL syntax tree condition node that defines a logical between comparison.
public sealed class SqlBetweenConditionNode : SqlConditionNode
- Inheritance
-
SqlBetweenConditionNode
- Inherited Members
- Extension Methods
Properties
IsNegated
Specifies whether or not this node represents a not between comparison.
public bool IsNegated { get; }
Property Value
Max
Maximum acceptable value.
public SqlExpressionNode Max { get; }
Property Value
Min
Minimum acceptable value.
public SqlExpressionNode Min { get; }
Property Value
Value
Value to check.
public SqlExpressionNode Value { get; }