使用c#从asp.net mvc 2.0中的数据库表中检索空值

发布于 2024-10-03 10:48:53 字数 533 浏览 3 评论 0原文

我在检索 null 值时遇到问题。

我的 MVC 应用程序中有一个选项。如果我选择“应税字段”,则输入的值将存储在表中。如果我选择“应税”为“否”,则“空”值将存储在表中。

现在我想从表中检索该空值以将其用于计算目的。 这是我的编码,

return db.Groups.SingleOrDefault(g => g.GroupID == gid).TaxRate.HasValue ?      
db.Groups.SingleOrDefault(g => g.GroupID == gid).TaxRate.Value : (double?)0.0;

但只有在第一个条件下它才会显示错误,因为

System.InvalidOperationException
Nullable Object must have a value.

我不知道为什么会出现此错误。

请告诉我解决方案。

提前致谢。

I have a problem with retrieving the null value.

I have a option in my MVC application. If I select Taxable field as Yes then entered value is stored in the table. If I select Taxable as No then Null value is stored in the table.

Now I want to retrieve that null value from the table to use it for calcution purposes.
This is my coding ,

return db.Groups.SingleOrDefault(g => g.GroupID == gid).TaxRate.HasValue ?      
db.Groups.SingleOrDefault(g => g.GroupID == gid).TaxRate.Value : (double?)0.0;

But in the first condition only it will shows the error as

System.InvalidOperationException
Nullable Object must have a value.

I don't know why I got this error.

Please tell me solution for this.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南…巷孤猫 2024-10-10 10:48:53

您是否尝试过仅将 db.Groups.SingleOrDefault(g => g.GroupID == gid) 设置为变量,然后检查 TaxRate 属性是否存在或为空?

Have you tried to set just db.Groups.SingleOrDefault(g => g.GroupID == gid) to a variable, and then checking to see if the TaxRate property exists or is null?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文