Show / Hide Table of Contents

Class Between

Class representing the Between part of the statement.

Inheritance
Object
QueryElement
Restriction
Compare
ArrayCompare
Between
Implements
ICloneable
Inherited Members
ArrayCompare._right
ArrayCompare.GetSubElements()
ArrayCompare.Right
Compare.IsTableInvolved(TableInfo)
Compare.AreAllTablesInvolved(TableInfo, SoTable[])
Compare.GetInvolvedTables(Dictionary<TableInfo, Object>)
Compare.GetTypedSubElement<T>()
Compare.Left
Compare.IsRelationDescription
Restriction.And(Restriction)
Restriction.Or(Restriction)
Restriction.RestrictionAnd(Restriction, Restriction)
Restriction.RestrictionOr(Restriction, Restriction)
Object.Equals(Object)
Object.Equals(Object, Object)
Object.ReferenceEquals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
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
ArrayCompare.Clone()

ToString()

String output.

Declaration
public override string ToString()
Returns
Type Description
String

a BETWEEN b AND c

Overrides
ArrayCompare.ToString()

Implements

System.ICloneable

Extension Methods

EnumUtil.MapEnums<From, To>(From)
Converters.MapEnums<From, To>(From)
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top