gpt4 book ai didi

c# - 使用 Linq 计算 ObservableCollection 值的总和

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

这是我的代码示例

class Gold
{
public String Category { get; set; }
public Double Weight { get; set; }
}
class Metal
{
public ObservableCollection<Gold> GoldCollection { get; set; }
public String Name { get; set; }
public Double Amount { get; set; }
}
class Collection
{
public ObservableCollection<Metal> MetalCollection { get; set; }
public String Category { get; set; }
public Double TotalWeight { get; set; }
}

如何使用 LINQ 从集合模型中计算按类别分组的黄金权重?

最佳答案

给你:

Collection obj = new Collection();

obj.MetalCollection.SelectMany(m => m.GoldCollection).GroupBy(g => g.Category).Select(t => new { t.Key, MySum = t.Sum(n => n.Weight).ToString() });

关于c# - 使用 Linq 计算 ObservableCollection 值的总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30031508/

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