在 InsertQuery 中设置 Null DateTime
我有一个数据集,它有一个 InsertQuery(String Name,String Surname,DateTime BDate)
现在我可以编写这样的代码,
_t.InsertQuer("Alper","AYDIN", null);
它可以记录数据,
但我想这样做,
_t.InsertQuery("Alper","AYDIN", dtBDate.IsEmpty==true?null:dtBDate.Value);
但是当我 Depoly 时它给出这样的错误;
无法确定条件表达式的类型,因为 '' 和 'System.DateTime' 之间没有隐式转换
如何设置 null ?
I have a dataset and it has a InsertQuery(String Name,String Surname,DateTime BDate)
Now I can wirte code like this,
_t.InsertQuer("Alper","AYDIN", null);
it can record data OK,
But I want to do like this,
_t.InsertQuery("Alper","AYDIN", dtBDate.IsEmpty==true?null:dtBDate.Value);
But when I Depoly it is give error like this;
Type of conditional expression cannot be determined because there is no implicit conversion between '' and 'System.DateTime'
How Can I set null ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
条件运算符需要能够返回单一数据类型。将 null 值转换为其他类型的 null 版本:
The conditional operator needs to be able to return a single data type. Cast the null value to the null version of the other type:
您是否尝试过这样的操作:
其中
dtBDate
是Nullable
。另请注意,如果
InsertQuery
方法采用DateTime
而不是Nullable
作为最后一个参数,则无法传递null
。Have you tried like this:
where
dtBDate
isNullable<DateTime>
.Also notice that you cannot pass
null
if theInsertQuery
method takesDateTime
instead ofNullable<DateTime>
as last parameter.