DBNull 的评估检查不起作用

发布于 2024-10-20 20:47:20 字数 293 浏览 2 评论 0原文

<%# Eval("Description") == DBNull.Value ? "empty" : "notempty"%>

即使数据库中该字段中有 null (varchar() 类型,null),也始终显示“notempty” ... 还尝试检查空字符串:

<%# Eval("Description") == "" ? "empty" : "notempty"%>

它总是显示 notempty...这里出了什么问题?

<%# Eval("Description") == DBNull.Value ? "empty" : "notempty"%>

is showing always 'notempty' even there is null in that field in DB (type of varchar(), null)
...
Tried also checking for empty string:

<%# Eval("Description") == "" ? "empty" : "notempty"%>

and it always displays notempty... what's wrong here??

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

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

发布评论

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

评论(3

血之狂魔 2024-10-27 20:47:20

DBNull.Valuenull 之间存在差异。该字段可能返回 null

<%# Eval("Description") == null ? "empty" : "notempty"%>

另外,如果字段值类型应该是字符串,您可以尝试执行以下操作

<%# (Eval("Description") as string) ?? "empty" %>

There is a difference between DBNull.Value and null. It is possible the field is returning null.

Try

<%# Eval("Description") == null ? "empty" : "notempty"%>

Also if the field value type is supposed to be string you could do something along the lines of..

<%# (Eval("Description") as string) ?? "empty" %>
傲影 2024-10-27 20:47:20

您是否尝试过使用此方法:

<%# Convert.IsDBNull(Eval("Description") ? "empty" : "notempty"%>

Have you tried using this method:

<%# Convert.IsDBNull(Eval("Description") ? "empty" : "notempty"%>
清醇 2024-10-27 20:47:20

它实际上并未在此级别存储DBNull。您需要查找 null 或空字符串,其中 string.IsNullOrEmpty 应该足够了,并且可以捕获 null 和空的两种状态。

<%# string.IsNullOrEmpty(Eval("Description").ToString()) ? "empty" : "notempty"%>  

It is not actually storing DBNull at this level. You need to look for null or an empty string which string.IsNullOrEmpty should be enough and will capture both states of null and empty.

<%# string.IsNullOrEmpty(Eval("Description").ToString()) ? "empty" : "notempty"%>  
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文