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 aretrue
. Corresponds to the SQLAND
operator.Or = 1
Logical OR operator. Returns
true
if any Boolean expression istrue
. Corresponds to the SQLOR
operator.