Closed
Description
1. Description
I've the following Code:
var expression = DynamicExpressionParser.ParseLambda(qry.GetType(), null, complexQueryString, objs.ToArray());
Delegate del = expression.Compile();
var resultIv = del.DynamicInvoke(qry);
qry = resultIv as IQueryable;
where qry.GetType() is of type Table wich inherits from IQueryable
My compleyQueryString looks like this:
"it.GroupBy(MessageClassName).Select(it.Key).Where(it != null).Distinct().OrderBy(it).Take(1000)"
this results in the following Expression Tree (in 1.3.10 and later)
but in Version 1.3.9 it has the following Tree:

2. Exception
There is no exception, but the Query is no IQueryable after the Parsing any more, and so my code fails