-
-
Notifications
You must be signed in to change notification settings - Fork 231
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DynamicExpression gone in version 1.0.3.4 #25
Comments
Renamed to DynamicExpressionParser. |
Thank you =) Quick question, I see you are returning "LambdaExpression" type. How can I cast it to "Expression < Func < Entity, bool > >" ? The reason why I am asking this is because I am using it to build custom LINQs as well, based on expressions. I tried like this but I get exception: (Expression< Func < Entity , bool > >)Expression.Lambda(expression1, null); |
Hmmm, didn't work... I need to get that type of result without supplying the paremeters. I am getting an exception telling me I should supply the paremeters. I am basically trying to use it as in "System.Linq.Dynamic" as it follows: var expression1 = !String.IsNullOrEmpty(expression) ? System.Linq.Dynamic.DynamicExpression.ParseLambda< Entity, bool >(expression, null) : null; Where "expression" can be any LINQ where condition as a string. |
Oh mate, sorry! That worked =) Thank you very much. Nice piece of work done here in this repo. Cheers! |
closed |
Hello,
I can't find DynamicExpression class in version 1.0.3.4 anymore.
Was it renamed?
Thanks! Cheers.
The text was updated successfully, but these errors were encountered: