BetweenExpression

Overview

The BetweenExpression class is used internally by DA LINQ to represent between expression clauses in Linq queries to Data Abstract services. Normally, you will never have to create instances of this class manually, as this is done by Data Abstract's Linq infrastructure.

For internal use only.

Location


Properties


Expression

Represents specified Expression object or it's descendant, for example, ColumnExpression object. The property is read-only.

 

property Expression: Expression read;

 

Expression Expression { get; }

 

ReadOnly Property Expression() As Expression

Lower

Represent lower value of the current between expression. The property is read-only.

 

property Lower: Expression read;

 

Expression Lower { get; }

 

ReadOnly Property Lower() As Expression

Upper

Represent upper value of the current between expression. The property is read-only.

 

property Upper: Expression read;

 

Expression Upper { get; }

 

ReadOnly Property Upper() As Expression

Instance Methods


constructor

 

constructor(expression: Expression; lower: Expression; upper: Expression)

 

BetweenExpression(Expression expression, Expression lower, Expression upper)

 

Sub New(expression As Expression, lower As Expression, upper As Expression)

Parameters:

  • expression:
  • lower:
  • upper: