C#集合中根據多個字段分組 group by linq表達式


 

 

void Main()
{
     var  empList =new List<Employee>
     {
        new Employee {ID = 1, FName = "John", Age = 23, Sex = 'M'},
        new Employee {ID = 2, FName = "Mary", Age = 25, Sex = 'F'},
        new Employee {ID = 3, FName = "Amber", Age = 23, Sex = 'M'},
        new Employee {ID = 4, FName = "Kathy", Age = 25, Sex = 'F'},
        new Employee {ID = 5, FName = "Lena", Age = 27, Sex = 'F'},
        new Employee {ID = 6, FName = "Bill", Age = 28, Sex = 'M'},
        new Employee {ID = 7, FName = "Celina", Age = 27, Sex = 'F'},
        new Employee {ID = 8, FName = "John", Age = 28, Sex = 'M'}
     };
       
  //這里是根據Age,Sex進行分組
// query with lamda expression g.Key代表Age和Sex兩字段,Count為新增字段 // 最終返回的集合QueryWithLamda包含字段:Age、Sex、Count var QueryWithLamda = empList.GroupBy(x => new { x.Age, x.Sex}) .Select(g=>new {g.Key, Count=g.Count()}); //query with standard expression<br> //返回結果同上 var query=from el in empList group el by new {el.Age,el.Sex} into g select new {g.Key, Count=g.Count()}; foreach (var employee in query /* Or QueryWithLamda */ ) Console.WriteLine(employee.Count); } public class Employee { public int ID {get;set;} public string FName {get;set;} public int Age {get;set;} public char Sex {get;set;} }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM