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
IsNegated
public bool IsNegated { get; }
Property Value
Pattern
String pattern to check the Value against.
public SqlExpressionNode Pattern { get; }
Property Value
Value
Value to check.
public SqlExpressionNode Value { get; }