Linq 错误泛型参数或查询必须使用可以为 null 的类型
当我在 LINQ 中使用 sum 函数时出现此错误:
转换为值类型“Decimal”失败,因为具体化值为 null。结果类型的泛型参数或查询必须使用可为 null 的类型。
GroupProduct.Where(a => a.Product.ProductID==1).Sum(Content => Content.Amount==null?0:Content.Amount),
I got this error when i use sum function in LINQ:
The cast to value type 'Decimal' failed because the materialized value is null. Either the result type's generic parameter or the query must use a nullable type.
GroupProduct.Where(a => a.Product.ProductID==1).Sum(Content => Content.Amount==null?0:Content.Amount),
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这是我通常使用的。这将涵盖
Amount
为 null 的可能性以及空集的可能性。DefaultIfEmpty()
返回与Amount
类型关联的默认值,即int
,在这种情况下,默认值为0
。This is what I usually use. This will cover the possibility of
Amount
being null and also cover the possibility of an empty set.DefaultIfEmpty()
returns the default value associated withAmount
's type, which isint
, in which case the default value is0
.您是否尝试过以下操作:
我的应用程序中的代码如下所示:
Did you try the following:
The code from my application looks like:
您可以从源头排除吗?
You could exclude at source?
试试这个:
Try this:
这看起来应该可以工作(并且通常可以),但当Where()方法返回null时会失败:
错误:
“转换为值类型“Decimal”失败,因为物化值是null”
是由于 Sum() 方法在对空集求和时返回 null(非零)。其中任何一个对我有用:
This looks like it should work (and usually does) but fails when the Where() method returns null:
The error:
"The cast to value type 'Decimal' failed because the materialized value is null"
is due to the Sum() method returning null (not zero) when summing over an empty set.Either of these work for me: