gpt4 book ai didi

c# - 使用多列分组,然后使用方法语法对特定列求和

转载 作者:行者123 更新时间:2023-11-30 22:53:14 25 4
gpt4 key购买 nike

目前我正在寻找一种方法来从可枚举对象中获取所有件数的总和,同时忽略重复项,同时使用方法语法。就目前情况而言,我的代码可以正常工作,但我意识到这只是暂时的。稍后会详细介绍。

让我们以下面的类为例

internal class Piece
{
public int Count { get; set; }
public DateTime Date { get; set; }
public string Description { get; set; }
}

然后使用此类创建包含以下信息的列表

List<Piece> pieces = new List<Piece>
{
new Piece(41,DateTime.Parse("2019-07-12"),"BB"),
new Piece(41,DateTime.Parse("2019-07-12"),"BB"),
new Piece(21,DateTime.Parse("2019-07-12"),"JP"),
new Piece(23,DateTime.Parse("2019-07-14"),"AA")
};

为了求和,我想出了以下内容

int total = pieces.Where(x => x.Count > 0)
.GroupBy(x => x.Count, x => x.Date,
(piece, date) => new { Count = piece,Date = date})
.Sum(x => x.Count);

这就是事情变得棘手的地方。如果再添加一 block 如下

new Piece(23,DateTime.Parse("2019-07-14"),"AB") 

由于我的分组方式,该部分将被忽略。这远非理想。

我发现了以下按几列分组的方法

GroupBy( x => new {x.Count,x.Date,x.Description})

但我发现没有办法做到这一点,所以我可以在这个分组上使用 Sum。这种使用 AnonymousType 的分组不允许我声明局部变量 (piece,date),因为我在之前的 GroupBy 中可以这样做(据我所知)。目前,我拥有的代码可以解决问题,但情况不再如此只是时间问题。

一些额外的细节。

我正在使用 Razor 处理查询结果,但我无法控制从服务器获取的数据。使用 linq 操作数据基本上是我目前唯一的方法。

非常感谢任何帮助

最佳答案

对于计数你只需要这个查询:

int total = pieces
.Where(x => x.Count > 0)
.GroupBy(x => new { x.Count, x.Date, x.Description })
.Sum(g => g.Key.Count);

因此您可以访问分组的所有关键属性。

初始样本返回 85,添加新样本返回 108。

关于c# - 使用多列分组,然后使用方法语法对特定列求和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57396809/

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