-
Notifications
You must be signed in to change notification settings - Fork 57
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
Why ToLambda<T> does not evaluate parameters dynamically #13
Comments
Hi lukas-ais, I think there are a couple of different aspects to this:
For example this ... class ExpressionContext {
public string Name { get; set; }
public Nested Nested { get; set; }
}
class Nested {
public string Value { get; set; }
} ... could be equivalent to: class ExpressionContext {
public string Name { get; set; }
public Dictionary<string, object> Nested { get; set; }
} or you could directly use a |
I already implemented the processing of the parameters within lambda. |
Did the pull request for Dictionary<string, object> as the expression context go in? |
I have a problem similar to issue #6.
I have analyzed the code trying to solve the issue.
I'm wondering why the parameters are referenced as constant and not used dynamically.
Is there any use case to
If so, we need an option.
Otherwise I would like to rewrite the handling of parameters introduced with fixing #1.
The text was updated successfully, but these errors were encountered: