See test case: https://github.com/invio/Invio.QueryProvider.MySql/blob/03146ab71130177e68285bb907676ad29b972341/test/Invio.QueryProvider.MySql.Test/MySqlQueryableTest.cs#L103-L106 In this example the sorting expression is the product of two numeric fields. Currently this expression results in the SQL text: ```SQL ... ORDER BY T.`UnitsInStock`T.`UnitPrice` ASC ``` The expected SQL text is: ```SQL ... ORDER BY (T.`UnitsInStock` * T.`UnitPrice`) ASC ```
See test case:
Invio.QueryProvider.MySql/test/Invio.QueryProvider.MySql.Test/MySqlQueryableTest.cs
Lines 103 to 106 in 03146ab
In this example the sorting expression is the product of two numeric fields. Currently this expression results in the SQL text:
The expected SQL text is: