itboy2009

博客园 首页 新随笔 联系 订阅 管理
1 var ArticleList = new Services.Data.SearchService().GetArticleBaseList(ref param);
2                 IEnumerable<IGrouping<string, Models.Data.ArticleBase>> Collection = ArticleList.GroupBy(p => p.YearIssue).ToList();//DBYL
3                 foreach (IGrouping<string, Models.Data.ArticleBase> info in Collection)
4                 {
5                     List<Models.Data.ArticleBase> sl = info.ToList<Models.Data.ArticleBase>();//分组后的集合                  
6                 }

关键是类型IEnumerable<IGrouping<string, Models.Data.ArticleBase>>的使用,然后是就是简单的遍历了

posted on 2015-08-14 10:20  itboy2009  阅读(242)  评论(0编辑  收藏  举报