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
- Reference: RemObjects.DataAbstract.dll
- Namespace: RemObjects.DataAbstract.Linq
- Platforms: .NET Core, .NET Framework, .NET Standard
- Ancestry: BaseExpression | BetweenExpression
Properties
Expression
Represents specified Expression object or it's descendant, for example, ColumnExpression object.
property Expression: Expression read;
Expression Expression { get; }
var Expression: Expression { get{} }
ReadOnly Property Expression() As Expression
Lower
Represent lower value of the current between expression.
property Lower: Expression read;
Expression Lower { get; }
var Lower: Expression { get{} }
ReadOnly Property Lower() As Expression
Upper
Represent upper value of the current between expression.
property Upper: Expression read;
Expression Upper { get; }
var Upper: Expression { get{} }
ReadOnly Property Upper() As Expression
Instance Methods
constructor
constructor(expression: Expression; lower: Expression; upper: Expression)
BetweenExpression(Expression expression, Expression lower, Expression upper)
init(_ expression: Expression, _ lower: Expression, _ upper: Expression)
Sub New(expression As Expression, lower As Expression, upper As Expression)
Parameters:
- expression: Represents datapoint expression (for example, field name) in current between expression.
- lower: Represents lower value of the current between expression.
- upper: Represents upper value of the current between expression.
-
BetweenExpression Class:
- RemObjects.DataAbstract.Expressions
- RemObjects.DataAbstract.Linq
- RemObjects.DataAbstract.Server.Sql
- DA LINQ