Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的数据表中有以下数据
我动态地得到一个分组列(银行名称,办公室数量,员工数量,每位员工的业务,每位员工的利润)
现在我想将数据分为 5 个级别(即银行名称 => 办公室数量 => 员工数量 => 每个员工的业务 => 每个员工的利润)
我如何动态地使用 linq 来做到这一点?
提前致谢....
由于您没有提供任何代码或实体,因此我可以通过示例进行演示
var result = YourList.GroupBy(x=> new { x.NameOfBank, x.Noofoffices,x.Employees,x.BusinessperEmployee,x.Profitperemployee })