linq聚合
class Category
{
public string Name { get; set; }
public int Count { get; set;}
}
Name Count
AA 2
BB 3
AA 4
我有一个 IEnumerable
并希望获得具有唯一名称的类别列表以及多个条目的总和
输出
Name Count
AA 6
BB 3
更新
class Category
{
public string Name { get; set; }
public int CountA { get; set;}
public int CountB { get; set;}
public string Phone { get; set;}
}
如何我对两列求和。 电话列可以是最后一行或任意行
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您更新的问题在电话号码方面并不完全清楚,但我怀疑您想要类似的内容:
将
grouped.Last()
更改为grouped.First()
会顺便说一句,变得更有效率。一般来说,以这种方式评估多个聚合并不是非常有效。 Push LINQ 项目使其效率更高,但代价是不太易于使用。 如果您需要处理大量数据,您可能需要研究它。
Your updated question isn't entirely clear in terms of the phone number, but I suspect you want something like:
Changing
grouped.Last()
togrouped.First()
would be more efficient, by the way.Evaluating multiple aggregates in this way isn't terribly efficient in general. The Push LINQ project developed by myself and Marc Gravell makes it a lot more efficient at the cost of not being quite as easy to use. You might want to look into it if you need to deal with a lot of data.