使用c#从asp.net mvc 2.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过仅将 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?