我正在使用 linq 数据源,如何配置 where 表达式
RequestDate != @RequestDate = null
给我一个错误: 该字符串未被识别为有效的日期时间。 有一个从索引 0 开始的未知单词。
RequestDate != @RequestDate = null
Gives me an ERROR:
The string was not recognized as a valid DateTime. There is a unknown word starting at index 0.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为了配置您的Where表达式,您应该像这样添加到WhereParameters集合中:
除了ControlParameters之外,还有QueryStringParameters,只是简单的参数(您经常在代码隐藏中设置或保留为其默认值)等等。
For configuring your Where expression, you should add to the WhereParameters collection like so:
In addition to ControlParameters, there are QueryStringParameters, just plain Parameters (which you often set in the code-behind or leave as their default value), and more.
回应:
为什么不使用
In reponse to:
Why not use
如果您尝试选择 RequestDate 为空的记录
那么呢
If you are trying to select records where RequestDate is null
then what about