csharp 使用lambda的小组

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 使用lambda的小组相关的知识,希望对你有一定的参考价值。

//Here's the list of DateTime functions available in LINQ. For this to work you'll also need to understand multi-column grouping
//ordered descending

var grouped = (from p in posts 
  group p by new { month = p.Create.Month,year= p.Create.Year } into d 
  select new { dt = string.Format("{0}/{1}",d.Key.month,d.Key.year), count = d.Count()}).OrderByDescending (g => g.dt);

以上是关于csharp 使用lambda的小组的主要内容,如果未能解决你的问题,请参考以下文章

csharp C#使用Lambda表达式为动态类型和动态属性排序通用列表

csharp lambda demo,delegate的用法

csharp 声明Lambdas

csharp 表达Lambda

csharp Lambda连接表

csharp 致电AWS Lambda