Enum SqlCompoundQueryOperator
- Namespace
- LfrlAnvil.Sql.Expressions
- Assembly
- LfrlAnvil.Sql.Core.dll
Represents a compound query operator.
public enum SqlCompoundQueryOperator : byte
Fields
Except = 3
Specifies an except operator.
Intersect = 2
Specifies an intersect operator.
Union = 0
Specifies a union operator. Only distinct records will be included.
UnionAll = 1
Specifies a union all operator. Non-distinct records will be included.