-
-
Notifications
You must be signed in to change notification settings - Fork 228
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
Add Json support #791
base: master
Are you sure you want to change the base?
Add Json support #791
Conversation
@StefH no not really. every of the following lines throws the exception above: ParameterExpression y = Expression.Parameter(typeof(JsonDocument), "y");
_ = DynamicExpressionParser.ParseLambda(new ParameterExpression[] { y }, null, "y => y.test");
_ = DynamicExpressionParser.ParseLambda(new ParameterExpression[] { y }, null, "y => y.test xy y.lol");
_ = DynamicExpressionParser.ParseLambda(new ParameterExpression[] { y }, null, "y => y.test != y.lol"); But I don't know if this is expected right now or if it should work. As mentioned for my code I really don't need it. |
|
Now I understand. Only when a JsonDocument is converted to an anonymous class, then this class will have the A possible solution would be to create a new SystemTextJsonDynamicExpressionParser.ParseLambda , however this will not be in scope for now. |
@StefH what is the plan to merge this branch to master? what are the open points? Can I help at any? |
@paule96 |
Quality Gate passedIssues Measures |
No description provided.