Class NotIn
The NOT IN class
Implements
Inherited Members
Namespace: SuperOffice.Data.SQL
Assembly: SoDataBase.dll
Syntax
public sealed class NotIn : ArrayCompare, ICloneable
Constructors
NotIn(Argument, params Argument[])
Initializes a new instance of the NotIn class, and takes left and right argument as in-parameters.
Declaration
public NotIn(Argument left, params Argument[] right)
Parameters
Type | Name | Description |
---|---|---|
Argument | left | leftside argument |
Argument[] | right | rightside argument |
Methods
Clone()
Clone the query.
Declaration
public override object Clone()
Returns
Type | Description |
---|---|
object | Copy of the node and its sub-elements |
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 NOT IN (b) |