在 InsertQuery 中设置 Null DateTime

发布于 2024-10-10 00:58:40 字数 401 浏览 1 评论 0原文

我有一个数据集,它有一个 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 技术交流群。

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

发布评论

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

评论(2

蓝天白云 2024-10-17 00:58:40

条件运算符需要能够返回单一数据类型。将 null 值转换为其他类型的 null 版本:

_t.InsertQuery("Alper","AYDIN", dtBDate.IsEmpty?(DateTime?)null:dtBDate.Value);

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:

_t.InsertQuery("Alper","AYDIN", dtBDate.IsEmpty?(DateTime?)null:dtBDate.Value);
‖放下 2024-10-17 00:58:40

您是否尝试过这样的操作:

_t.InsertQuery("Alper","AYDIN", dtBDate);

其中 dtBDateNullable

另请注意,如果 InsertQuery 方法采用 DateTime 而不是 Nullable 作为最后一个参数,则无法传递 null

Have you tried like this:

_t.InsertQuery("Alper","AYDIN", dtBDate);

where dtBDate is Nullable<DateTime>.

Also notice that you cannot pass null if the InsertQuery method takes DateTime instead of Nullable<DateTime> as last parameter.

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