摘要: group by子句返回的结果集跟我们之前的不大一样,我们之前返回的是IEnumerable的集合,但是,group by返回的是IGrouping<TKey, TElement>的结果集。事实上,IGrouping也是继承了IEnumerablepublic interface IGrouping<out TKey, out TElement> : IEnumerable<TElement>,... 阅读全文
posted @ 2012-03-14 00:21 Xiao Tian 阅读(524) 评论(0) 推荐(0)