You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
1. Description
I've the following Code:
where qry.GetType() is of type Table wich inherits from IQueryable
My compleyQueryString looks like this:
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
The text was updated successfully, but these errors were encountered: