This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Description
See test case:
|
[Fact(Skip = "BUG: Expression in OrderBy results in invalid SQL string.")] |
|
public override void OrderBy_Expression() { |
|
base.OrderBy_Expression(); |
|
} |
In this example the sorting expression is the product of two numeric fields. Currently this expression results in the SQL text:
... ORDER BY T.`UnitsInStock`T.`UnitPrice` ASC
The expected SQL text is:
... ORDER BY (T.`UnitsInStock` * T.`UnitPrice`) ASC