Table of Contents

Enum LogicalOperators

Namespace
FluentCommand.Query
Assembly
FluentCommand.dll

Specifies the logical operators used to combine Boolean expressions in SQL WHERE clauses.

public enum LogicalOperators
Extension Methods

Fields

And = 0

Logical AND operator. Returns true if all Boolean expressions are true. Corresponds to the SQL AND operator.

Or = 1

Logical OR operator. Returns true if any Boolean expression is true. Corresponds to the SQL OR operator.