對list進行分組

  IEnumerable<IGrouping<string, ChronicIcd>> query = chronicList.GroupBy(pet => pet.ChronicName);
                    if (query != null)
                    {
                        result = new List<List<ChronicIcd>>();
                        foreach (IGrouping<string, ChronicIcd> info in query)
                        {
                            List<ChronicIcd> sl = info.ToList<ChronicIcd>();//分組後的集合  
                            result.Add(sl);
                        }
                    }

 

mark一下 spa

對list集合進行分組code

相關文章
相關標籤/搜索