我有以下linq表达式从我的数据库中提取所有数据:
var items = response.Select(a => a.SessionLocationID).ToArray();
mdl = _meetingRepository.Select<SessionLocation>()
.OrderBy(a => a.SessionDT).ThenBy(a => a.SessionEndTime);
Run Code Online (Sandbox Code Playgroud)
现在我想按ActualRoom字段分组,只有ActualRoom计数> 3的分组
那可能吗?