Creates a QueryExpression representing a database BETWEEN operation.

Namespace:  Mindscape.LightSpeed.Querying
Assembly:  Mindscape.LightSpeed (in Mindscape.LightSpeed.dll)
Version: 4.0.0.0 (4.0.0.0)

Syntax

C#
public QueryExpression Between(
	Object low,
	Object high
)
Visual Basic (Declaration)
Public Function Between ( _
	low As Object, _
	high As Object _
) As QueryExpression

Parameters

low
Type: System..::.Object
The low value.
high
Type: System..::.Object
The high value.

Return Value

A QueryExpression representing a database BETWEEN operation.

See Also