Table of Contents

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

ReadOnlyArray<SqlExpressionNode>

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

bool

Value

Value to check.

public SqlExpressionNode Value { get; }

Property Value

SqlExpressionNode