Class Add
The Add function.
Implements
Inherited Members
Namespace: SuperOffice.Data.SQL
Assembly: SoDataBase.dll
Syntax
public sealed class Add : MathematicalExpression, ICloneable
Constructors
Add(Argument, Argument)
Constructor.
Declaration
public Add(Argument left, Argument right)
Parameters
Type | Name | Description |
---|---|---|
Argument | left | The left-hand-side of the add-operation.. |
Argument | right | The right-hand-side of the add-operation. |
Remarks
Will add the right-hand-side from the left-hand-side. The FieldDataTypes must be the same on both sides.
Add(Argument[])
Overridden constructor.
Declaration
public Add(params Argument[] arguments)
Parameters
Type | Name | Description |
---|---|---|
Argument[] | arguments | An array of Arguments to add. |
Remarks
Makes it possible to add several arguments to each other.
Methods
Clone()
Clone the query. Parameter values are shared between the original and the clone.
Declaration
public override object Clone()
Returns
Type | Description |
---|---|
Object | Copy of the and node. The sub-elements are shared |
Overrides
ToString()
String output.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | a + b |
Overrides
Implements
Extension Methods
EnumUtil.MapEnums<From, To>(From)