我创建了一个模型列表,我喜欢对数据进行一些计数和求和,并返回一个包含一些列和总数的新列表。
我有以下型号
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; }
}
我需要能够知道
我如何按部门分组并汇总工资?
这是我试过的
List<Employee> employees = new List<Employee>();
但是这段代码给了我语法错误
我该怎么做才能解决这个问题?