We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
using EfCore 6.0.1
The following Linq query throws a StackOverflowException.
var result = applicationDbContext.PageImpressions .GroupBy(x => x.CreationDateTime.Date) .Select(x => new { TotalCount = x.Count(), UniqueIpAddressCount = x.GroupBy(x => x.IpAddress).Count(), UniqueUserAgentCount = x.GroupBy(x => x.UserAgent).Count() }) .ToList();
Minimal Repo: https://github.com/alienwareone/EfCoreNestedGroupByError
The text was updated successfully, but these errors were encountered:
Duplicate of #27094
Sorry, something went wrong.
No branches or pull requests
using EfCore 6.0.1
The following Linq query throws a StackOverflowException.
Minimal Repo:
https://github.com/alienwareone/EfCoreNestedGroupByError
The text was updated successfully, but these errors were encountered: