Class Union
The UNION class describes and implements the UNION part of a sql-query.
Implements
Inherited Members
Namespace: SuperOffice.Data.SQL
Assembly: SoDataBase.dll
Syntax
public sealed class Union : TableExpression, ICloneable
Constructors
Union()
Initializes a new instance of the Union class.
Declaration
public Union()
Properties
SqlType
Returns SqlType.IsUnion.
Declaration
public override SqlType SqlType { get; }
Property Value
Type | Description |
---|---|
SqlType |
Overrides
Methods
Clone()
Return deep copy of the Union selects.
Declaration
public object Clone()
Returns
Type | Description |
---|---|
Object | Copy of all the contained selects |
ToString()
String output.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | ... UNION ... ORDER BY... |
Implements
Extension Methods
EnumUtil.MapEnums<From, To>(From)