摘要: //按部门汇总 IEnumerable report = summary .GroupBy(x => new { x.DeptID, x.DeptName }).Select(g => new WeekReportWithDepartmentInfo { DeptID = g.Key.DeptID, ... 阅读全文
posted @ 2016-07-22 12:45 cclon 阅读(405) 评论(0) 推荐(0) 编辑