gpt4 book ai didi

linq-to-sql - LINQ to SQL 小数值总和

转载 作者:行者123 更新时间:2023-12-05 08:44:46 24 4
gpt4 key购买 nike

我不知道如何对十进制值进行简单求和。

Table<StaffTime> times = ctx.GetTable<StaffTime>();

var query = from t in times
select new
{
t.Hours.Sum()
}

Sum 不是扩展方法吗?我错过了什么?

鲍勃

最佳答案

Sum 是对 IEnumerable<decimal> 的扩展方法(或 int 或其他)。 t.Hours 是一个单个十进制值(我假设),因此无法求和。

如果你想要总小时数,写times.Sum(t => t.Hours) .

关于linq-to-sql - LINQ to SQL 小数值总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1942995/

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