-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
Generate expression trees in compiled models (query filters, value converters) #29924
Comments
Note that this isn't necessarily about replacing the entire current code generation mechanism with a Roslyn-based one - we can use the LINQ->C# visitor only for lambda fragments and keep the rest as it is. Replacing the entire mechanism might be worth considering:
|
Note from triage: Query filter case is most interesting here. Make sure that captured context access is preserved. |
@AndriySvyryd we've already done work on this right? Is it useful to keep this, maybe possibly to add a task list for things not yet done? |
I think #24897 captures what's left. |
The compiled model currently has the limitation that expression tree lambdas cannot be rendered (e.g. query filters). The ongoing work on precompiled queries includes a visitor that can generate a faithful C# code representation from a LINQ expression tree, so we could possibly use that to remove the restriction.
From a conversation with @ajcvickers
The text was updated successfully, but these errors were encountered: