Table of Contents

Class SqlLikeConditionNode

Namespace
LfrlAnvil.Sql.Expressions.Logical
Assembly
LfrlAnvil.Sql.Core.dll

Represents an SQL syntax tree condition node that defines a logical check if Value satisfies a string Pattern.

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

Properties

Escape

Optional escape character for the Pattern.

public SqlExpressionNode? Escape { get; }

Property Value

SqlExpressionNode

IsNegated

Specifies whether or not this node represents a check if Value does not satisfy a string Pattern.

public bool IsNegated { get; }

Property Value

bool

Pattern

String pattern to check the Value against.

public SqlExpressionNode Pattern { get; }

Property Value

SqlExpressionNode

Value

Value to check.

public SqlExpressionNode Value { get; }

Property Value

SqlExpressionNode