-
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
Query: Entity Framework core 1 Group By after Union throw “must be reducible node” Exception #6658
Comments
Is there an ETA on this? I have the same exception, and I have to call ToArray() before filtering, which obviously is bad for performances. |
It's on our list to investigate for the next release (1.2.0). Once we understand the work required, we'll have a better idea of where this fits. |
This still reproduces on current bits. We generate the following query plan:
|
Which node is non-reducible? |
key selector and element selector on the GroupBy, updated the query plan with debug version instead |
Add test for set operation followed group by not translating correctly Issue #6658
Add test for set operation followed group by not translating correctly Issue #6658
Add test for set operation followed group by not translating correctly Issue #6658
So is this problem solved? |
Re-opening to add more coverage for set operations and group by interactions. |
Filed #17607 for further test coverage. |
I need unoin two query and after union Group By that, but throw "must be reducible node" Exception. in following sample code are:
Does anyone faced with this problem?
The text was updated successfully, but these errors were encountered: