如何使用c#从模型列表创建数据透视/摘要列表?

时间:2016-04-14 22:27:36

标签: c# .net linq list

我创建了一个模型列表,我喜欢对数据进行一些计数和求和,并返回一个包含一些列和总数的新列表。

我有以下型号

def configure_permitted_parameters
    devise_parameter_sanitizer.for(:sign_up) << [:username, options: []]
end


# also added in User.rb file
attr_accessor :options

我有一个看起来像这样的列表

public class Employee
{
   public string name { get; set; }
   public string department { get; set; }
   public decimal salary { get; set; }
   public decimal sales { get; set; }

}

我需要能够知道

  1. 每个部门的员工总数
  2. 薪水总和
  3. 我如何按部门分组并汇总工资?

    这是我试过的

    List<Employee> employees = new List<Employee>();
    

    但是这段代码给了我语法错误

    我该怎么做才能解决这个问题?

0 个答案:

没有答案