Table of Contents

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

bool

Max

Maximum acceptable value.

public SqlExpressionNode Max { get; }

Property Value

SqlExpressionNode

Min

Minimum acceptable value.

public SqlExpressionNode Min { get; }

Property Value

SqlExpressionNode

Value

Value to check.

public SqlExpressionNode Value { get; }

Property Value

SqlExpressionNode