Class SqlInConditionNode
- Namespace
- LfrlAnvil.Sql.Expressions.Logical
- Assembly
- LfrlAnvil.Sql.Core.dll
Represents an SQL syntax tree condition node that defines a logical check if Value exists in a set of values.
public sealed class SqlInConditionNode : SqlConditionNode
- Inheritance
-
SqlInConditionNode
- Inherited Members
- Extension Methods
Properties
Expressions
Collection of values that the Value is compared against.
public ReadOnlyArray<SqlExpressionNode> Expressions { get; }
Property Value
IsNegated
Specifies whether or not this node represents a check if Value does not exist in a set of values.
public bool IsNegated { get; }
Property Value
Value
Value to check.
public SqlExpressionNode Value { get; }