当前位置:  开发笔记 > 编程语言 > 正文

选择最常用的值并使用LINQ计数并分配给字典

如何解决《选择最常用的值并使用LINQ计数并分配给字典》经验,为你挑选了1个好方法。

我正在尝试在表格中选择前五个最常见的值及其计数,并将它们返回到词典中.我能够在sql中获取值:

SELECT top 5 
    SR_Status,
    COUNT(SR_Status) AS 'value_count'
FROM     
    ServiceRequests
GROUP BY 
    SR_Status
ORDER BY 
    'value_count' DESC;

如何转换为linq并分配给Dictionary



1> Felipe Orian..:

你没有指定你是使用Linq2Sql还是Linq2Objects,所以,让我们假设linq.尝试这样的事情(参见每行的评论):

var result = (from s in ServiceRequests // define the data source
             group s by s.SR_Status into g  // group all items by status
             orderby g.Count() descending // order by count descending
             select new { g.Key, Total = g.Count() }) // cast the output
             .Take(5) // take just 5 items
             .ToDictionary(x => x.Key, x => x.Total); // cast to dictionary

Obs:我没有测试过.

推荐阅读
贾志军
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有