我正在尝试在表中选择前五个最常用的值并将它们返回到List中.
var mostFollowedQuestions = (from q in context.UserIsFollowingQuestion
select *top five occuring values from q.QuestionId*).toList();
Run Code Online (Sandbox Code Playgroud)
任何的想法?
谢谢