读书人

linq to sql分组查询解决办法

发布时间: 2013-12-06 17:56:43 作者: rapoo

linq to sql分组查询
linq to sql分组查询linq to sql分组查询解决办法 LINQ
[解决办法]

 string[] words = { "blueberry", "chimpanzee", "abacus", "banana", "apple", "cheese" }; 

var wordGroups =
from w in words
group w by w[0] into g
select new { FirstLetter = g.Key, Words = g };

foreach (var g in wordGroups)
{
Console.WriteLine("Words that start with the letter '{0}':", g.FirstLetter);
foreach (var w in g.Words)
{
Console.WriteLine(w);
}
}


http://code.msdn.microsoft.com/101-LINQ-Samples-3fb9811b

读书人网 >.NET

热点推荐