Class Between
Class representing the Between part of the statement.
Implements
Inherited Members
Namespace: SuperOffice.Data.SQL
Assembly: SoDataBase.dll
Syntax
public sealed class Between : ArrayCompare, ICloneable
Constructors
Between(Argument, Argument, Argument)
Default constructor.
Example sql query: find all associates where associate_id between 5 and 10
SELECT TO.associate_id
FROM associate T0
WHERE associate_id BETWEEN 5 AND 10;
Declaration
public Between(Argument left, Argument min, Argument max)
Parameters
Type | Name | Description |
---|---|---|
Argument | left | FieldInfo |
Argument | min | Minimum value |
Argument | max | Maximum value |
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 node and its sub-elements |
Overrides
ToString()
String output.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | a BETWEEN b AND c |