如何将此 GROUP BY / MIN SQL 查询转换为 LINQ?
我计划在子查询中使用它,但无法找出将以下查询转换为 LINQ 的正确语法:
select ChapterID, min(MeetingDate)
from ChapterMeeting
group by ChapterID
I plan on using this in a subquery but can't figure out the correct syntax to translate the following query into LINQ:
select ChapterID, min(MeetingDate)
from ChapterMeeting
group by ChapterID
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好吧,艾米比我先一步,但如果你想用“理解”语法来查看它:
Well, Amy beat me to it, but in case you wanted to see it with the "comprehension" syntax: