Simplest Group By Fails in EF 3.x with “Client side GroupBy is not supported”
问题 Currently testing with EF Core version 3.1.1. When I search, I find references to this problem, but I don't see any definitive answers about why this happens, and whether it is a bug that will be fixed or if it's expected behavior. This is just as simple as it looks--the BatchRequest table/entity has an integer column/property called BatchId: var batchRequestGroups = context.BatchRequests.GroupBy(br => br.BatchId).ToList(); When I run this, I get a System.InvalidOperationException, "Client