Class Or
Class containing the necessary functions for the OR-operator
Implements
Inherited Members
Namespace: SuperOffice.Data.SQL
Assembly: SoDataBase.dll
Syntax
public sealed class Or : Bool, ICloneable
Constructors
Or(Restriction, Restriction)
Initializes a new instance of the Or class, and takes left and right argument as in-parameters.
Declaration
public Or(Restriction left, Restriction right)
Parameters
Type | Name | Description |
---|---|---|
Restriction | left | left side restriction |
Restriction | right | right side restriction |
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 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 OR b |