- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
具有以下对象列表:
public class Example
{
public string Local { get; set; }
public string Type { get; set; }
public int Amount { get; set; }
}
我想按 Local
对列表进行分组并且在同一字段(总计)中,求和 Amount
其中Type
是“输入”并减去Amount
其中Type
是“输出”。
示例:
根据上面的示例,我想要以下结果:
我已经尝试了以下代码,但它不起作用。它在 Total
上返回 NULL .
var Balances = Examples
.GroupBy(y => y.Local)
.Select(y => new BalanceDTO
{
Local = y.FirstOrDefault().Local
Total = y.Where(z => z.Type == "Input").Sum(z => z.Amount) - y.Where(z => z.Type == "Output").Sum(z => z.Amount)
}).ToList()
我应该做什么?
最佳答案
我已将计算属性添加到您的 Example
类中:
public class Example
{
public string Local { get; set; }
public string Type { get; set; }
public int Amount { get; set; }
public int NetAmount
{
get
{
return Type == "Input" ? Amount : -1 * Amount;
}
}
}
然后在您的 LINQ 中将它们分组到 Local
字段中,就像您所做的那样,然后我使用了 LINQ Aggregate method将每组中所有这些“净总数”相加:
var Balances = Examples
.GroupBy(y => y.Local)
.Select(y => new
{
Local = y.Key,
Total = y.Sum(y => y.NetAmount)
}).ToList();
关于c# - 有条件的分组、求和、相减,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60998943/
这个问题已经有答案了: Diff of two Dataframes (8 个回答) 已关闭 4 年前。 我有 2 个数据框(df_a 和 df_b),有 2 列:“动物”和“名称”。 在更大的数据框
如果我得到以下数字字符串,是否可以使用 LINQ 查询将这些数字一起加/减? string numbers = "1 + 1, 2 - 1, 3 + 3"; 所以我最终会得到这样的东西: 字符串数字
具有以下对象列表: public class Example { public string Local { get; set; } public string Type { get;
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
#include #include float sum (float *A, int len) // sum of table of floats { float ss = 0.0;
我正在阅读这篇博文:https://nee.lv/2021/02/28/How-I-cut-GTA-Online-loading-times-by-70/ 我很困惑: size_t len = end
我正在阅读这篇博文:https://nee.lv/2021/02/28/How-I-cut-GTA-Online-loading-times-by-70/ 我很困惑: size_t len = end
这个问题已经有答案了: Pointer Arithmetic In C (2 个回答) Pointer subtraction confusion (8 个回答) 已关闭 4 年前。 int vect
我知道这可能是个愚蠢的问题,但我遇到了一些麻烦,我很惭愧,但我真的不知道如何做到。我想加减两个以整数形式给出的“小时”。 #include #include #include using nam
大家好 StackOverflow.. 这个网站相当新,但我得到了很好的反馈!所以首先要感谢大家! 我想做的是类似于wonga的事情 https://www.wonga.com/ 但是随着值的协同工作
我是一名优秀的程序员,十分优秀!