【发布时间】:2011-10-07 12:59:35
【问题描述】:
我正在尝试选择表中最常见的五个值并将它们返回到一个列表中。
var mostFollowedQuestions = (from q in context.UserIsFollowingQuestion
select *top five occuring values from q.QuestionId*).toList();
有什么想法吗?
谢谢
【问题讨论】:
标签: c# sql linq entity-framework