-
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: IncludeResultOperator not implemented in some client eval cases #7187
Comments
GroupBy is not implemented? |
GroupBy is implemented, but I think it has an issue when it encounters my subquery.
Even though there is nothing wrong with my subquery.. (that I can see) and the query executes fine when the group by is not attempted. |
Gonna update to 1.1.0 and retry it. |
Ok I can't update to version 1.1.0 because that means updating some other packages that EF uses to 1.1.0 - which means I also then have to upgrade MVC 6 packages to 1.1.0 release. The MVC 6 1.1.0 release has its own set of issues that impact my application making an update not possible. Gees I think I will be sticking to the LTS release. So I will try updating EF to 1.0.1 instead, and giving that a go. |
Works in current bits, closing |
Steps to reproduce
Ideally include a complete code listing that we can run to reproduce the issue.
Alternatively, you can provide a project/solution that we can run.
Unfortunately I can't post the complete code verbatim as its against the companies policy, however I will try to outline the problem.
The issue
The problem is that when I attempt to execute a query, I am getting a
NotImplementedException
.The query runs perfectly if I omit the last bit (with the comment). The reason why I am now encountering this issue, is because I not only want to get back a page of results, but I also wanted to get back the total number of results in one roundtrip to the db. Knowing the total number of results is important if you want to calculate how many more pages there are!
Exception details:
Further technical details
EF Core version: (found in project.json or packages.config)
"Microsoft.EntityFrameworkCore": "1.0.0",
"Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
Operating system: Win 8.1 x64
Visual Studio version: vs2015
Other details about my project setup:
The text was updated successfully, but these errors were encountered: