c# – MVC linq到sql sum

前端之家收集整理的这篇文章主要介绍了c# – MVC linq到sql sum前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
尝试根据字段的总和获取数据库返回的值.

但得到这个消息:

The cast to value type ‘System.Decimal’ Failed because the
materialized value is null. Either the result type’s generic parameter
or the query must use a nullable type.

数据库在当天不包含该用户的记录是有效的,因此我沿着可空路线走了.在过去的好日子里,我会在其中建立一个带有“ISNULL”的存储过程!

这是我的基本表达方式:

十进制? foodCount = dbContext.fad_userFoods.Where(uf => uf.dateAdded == thisDate&& uf.userID == thisGuid).Sum(uf =>(decimal?)uf.quantityAmount ?? 0m);

谷歌搜索它提出了可空的定义和使用?用“m”作为小数.但仍然存在错误

您的集体帮助将一如既往地无价之宝.提前致谢.

解决方法

使用 DefaultIfEmpty方法.如果没有找到任何值,则将填入0.
decimal foodCount = dbContext.fad_userFoods
    .Where(uf => uf.dateAdded == thisDate && uf.userID == thisGuid)
    .Select(uf => uf.quantityAmount)
    .DefaultIfEmpty()
    .Sum();
原文链接:https://www.f2er.com/csharp/97636.html

猜你在找的C#相关文章