C# DataView RowFilter,DateTime 列为空值

发布于 2024-10-19 22:40:48 字数 391 浏览 0 评论 0原文

我正在尝试过滤空列(我只想显示列为空的行),但问题是我无法将该列与空值进行比较,因为该列具有 DateTime 值。

我收到以下错误

System.Data.EvaluateException:不能 执行 '=' 操作 System.DateTime 和 System.String。

这是我的过滤器代码

CourseID IN (" + courseIds + ") AND Isnull(DateBooked, 'Null Column') = 'Null Column'

DateBooked 是具有 DateTime 值的列。 Isnull 之前的所有内容均正常运行。 请帮忙!

I'm trying to filter on null columns (I only want to show rows where the column is null), but the issue is I can't compare the column to a null, since the column is of DateTime value.

I get the following error

System.Data.EvaluateException: Cannot
perform '=' operation on
System.DateTime and System.String.

This is my code for the filter

CourseID IN (" + courseIds + ") AND Isnull(DateBooked, 'Null Column') = 'Null Column'

DateBooked is the column with DateTime value. Everything before the Isnull is functioning correctly.
Help please!

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

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

发布评论

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

评论(1

林空鹿饮溪 2024-10-26 22:40:48

isnull 不是总是返回与其第一个参数相同类型的值吗?

尝试使用 DateBooked IS NULL 而不是 Isnull(DateBooked, 'Null Column') = 'Null Column'

Doesn't isnull always return a value of the same type as its first parameter?

Try DateBooked IS NULL instead of Isnull(DateBooked, 'Null Column') = 'Null Column'.

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