C# DataView RowFilter,DateTime 列为空值
我正在尝试过滤空列(我只想显示列为空的行),但问题是我无法将该列与空值进行比较,因为该列具有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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 ofIsnull(DateBooked, 'Null Column') = 'Null Column'
.