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