-
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
Consider obtaining method infos from compiler generated expressions (may help with UWP/.NET Native) #3294
Comments
@natemcmaster you may want to do this earlier to reduce directives for .NET Native |
This won't work. LINQ uses |
Interesting. Then does Queryable currently not work at all in .NET Native? |
The problem is in |
Still don't understand why it wouldn't work for us, sorry about that 😄 Will probably ask you in person. |
Discussed in person. Will investigate more. |
After further investigation, refactoring our code to avoid calls to |
Closing as per @natemcmaster's comment. |
Queryable
uses this pattern:We haven't tested yet if this actually helps but it avoids using reflection directly at runtime and in particular
MakeGeneticMethod<T>()
which is known to be problematic with .NET Native.cc @natemcmaster @anpete
The text was updated successfully, but these errors were encountered: