zoukankan      html  css  js  c++  java
  • C#中对DataTable进行全连接后group by,orderby

    var result = from temp2 in
                                 (
                                     from u in users.Tables[0].AsEnumerable()
                                     join s in hpcSummary.Tables[0].AsEnumerable() on u.Field<String>("DomainUser") equals s.Field<String>("CountObj")
                                     select new
                                     {
                                         SolverName = s.Field<String>("Solver"),
                                         CountObj = s.Field<String>("CountObj"),
                                         NumJob = s.Field<Int64>("Jobs"),
                                         CpuTime = s.Field<Double>("TotalCPUTime")
                                     }
                                )
                             orderby temp2.NumJob descending
                             group temp2 by new { SolverName = temp2.SolverName } into temp3
                             select new
                             {
                                 SolverName = temp3.Key.SolverName,
                                 NumJob = temp3.Sum(t => t.NumJob),
                                 CpuTime = temp3.Sum(t => t.CpuTime)
                             };

  • 相关阅读:
    position笔记
    IFE-33笔记
    IFE-31 笔记
    selectedIndex
    iFE-30 笔记
    基于select的python聊天室程序
    python select网络编程详细介绍
    (转载)centos yum源的配置和使用
    python 多进程使用总结
    python迭代器实现斐波拉契求值
  • 原文地址:https://www.cnblogs.com/johnblogs/p/6958354.html
Copyright © 2011-2022 走看看