Hi,
I Would like to combine a DbFunctionCall with a Expression.
Desired query would look like:
((COALESCE(PriceIncl1, PriceIncl2, PriceIncl3)) / (1 + (19 / 100))) as PriceExcl
I thread http://www.llblgen.com/tinyforum/Messages.aspx?ThreadID=8054 i read its possible to combine multple DbFunctionCall like:
new DbFunctionCall("ROUND", new object[] { new DbFunctionCall("ROUND", new object[] { (OrderDetailsFields.UnitPrice * OrderDetailsFields.Quantity), -1 }), -1})
But i can't figure out how to do this with a expression.
Thnx