Class LessThanOrEqual
Operator class for the less-than-or-equal (<=) operator
Implements
Inherited Members
Namespace: SuperOffice.Data.SQL
Assembly: SoDataBase.dll
Syntax
public sealed class LessThanOrEqual : Compare, ICloneable
Constructors
LessThanOrEqual(Argument, Argument)
Initializes a new instance of the LessThanOrEqual class, and takes left and right as in-parameters.
Declaration
public LessThanOrEqual(Argument left, Argument right)
Parameters
| Type | Name | Description |
|---|---|---|
| Argument | left | left side of the compare |
| Argument | right | right side of the compare |
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 LESSTHAN node |
Overrides
Remarks
This method is used by the SentryQueryUpdater to modify a query with sentry extensions without affecting the original query.
ToString()
String output.
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| string | a < b |