gpt4 book ai didi

c# - 获取每个日期的总记录

转载 作者:太空宇宙 更新时间:2023-11-03 18:10:41 25 4
gpt4 key购买 nike

我有一个简单的List客户记录:

Customer
Name
Age
DateTimeOfThing


使用Linq,我需要知道 DateTimeOfThingDateTime时,每天有多少客户。

像这样:

1-April-2013     23
2-April-2013 3
3-April-2013 123


我的来源是这样的:

var myList = new List<Customer>() ....

最佳答案

var res = myList
.GroupBy(z => z.DateTimeOfThing.Date)
.Select(z => new
{
Count = z.Count(),
Date = z.Key
});

关于c# - 获取每个日期的总记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16108432/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com