19 using NUnit.Framework;
21 namespace Deveel.Data.Sql.Expressions {
26 const string text =
"TODATE('2013-03-01') < TODATE('2013-05-02')";
30 Assert.IsNotNull(expression);
34 Assert.DoesNotThrow(() => evaluated = expression.
Evaluate());
35 Assert.IsNotNull(evaluated);
static SqlExpression Parse(string s)
Parses the given SQL string to an expression that can be evaluated.
void DateSmallerThanOtherDate()
DataObject Value
Gets the constant value of the expression.
virtual SqlExpression Evaluate(EvaluateContext context)
When overridden by a derived class, this method evaluates the expression within the provided context...
An expression that holds a constant value.
Defines the base class for instances that represent SQL expression tree nodes.