Table of Contents

Class SqlInQueryConditionNode

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 returned by a sub-query.

public sealed class SqlInQueryConditionNode : SqlConditionNode
Inheritance
SqlInQueryConditionNode
Inherited Members
Extension Methods

Properties

IsNegated

Specifies whether or not this node represents a check if Value does not exist in set of values returned by a sub-query.

public bool IsNegated { get; }

Property Value

bool

Query

Sub-query that the Value is compared against.

public SqlQueryExpressionNode Query { get; }

Property Value

SqlQueryExpressionNode

Value

Value to check.

public SqlExpressionNode Value { get; }

Property Value

SqlExpressionNode