LogicalOperator
Represents a closed set of logical operators used in WHERE clauses (ADT).
public abstract record LogicalOperator : WhereCondition, IEquatable<WhereCondition>, IEquatable<LogicalOperator>
Methods
ToSql()
public string ToSql()
Gets the SQL keyword for this logical operator.
Returns: String
Values
| Name | Description |
|---|---|
AndOperator |
Logical AND operator. |
OrOperator |
Logical OR operator. |