我的 lambda 表达式:
lst.Add(qry.Where(item => item.Type == "Gundalac")
.Aggregate(new CDetails(), (accumulator, item) => new CDetails {
Des = "CATALOG",
Amt = accumulator.Amt + item.Amt
}));
public class CDetails
{
public string Des { get; set; }
public decimal? Amt { get; set; }
}
总是Amt
为空值?如何获得“qry”结果的总金额。