Class NotBetween
The NOT BETWEEN class
Implements
System.ICloneable
Inherited Members
Namespace: SuperOffice.Data.SQL
Assembly: SoDataBase.dll
Syntax
public class NotBetween : ArrayCompare, ICloneable
Constructors
NotBetween(Argument, Argument, Argument)
Default constructor Example sql query: find all associates where associate_id NOT between 5 and 10
SELECT TO.associate_id
FROM associate T0
WHERE associate_id NOT BETWEEN 5 AND 10;
Declaration
public NotBetween(Argument left, Argument min, Argument max)
Parameters
Type | Name | Description |
---|---|---|
Argument | left | Argument |
Argument | min | Minimum value |
Argument | max | Maximum value |
Methods
Clone()
Clone the query.
Declaration
public override object Clone()
Returns
Type | Description |
---|---|
System.Object | Copy of the node and its sub-elements |
Overrides
Remarks
This method is used by the
ToString()
String output.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | a NOT BETWEEN b AND c |
Overrides
Implements
System.ICloneable
Extension Methods
EnumUtil.MapEnums<From, To>(From)