我正在尝试使用此处给出的解决方案 - >
C# ADO.NET: nulls and DbNull -- is there more efficient syntax?
但我正在使用int。
由于
答案 0 :(得分:0)
将int?
替换为DateTime?
然后......
答案 1 :(得分:0)
int? myNullableInt = null;
myIntParameter.Value = myNullableInt ?? (object)DBNull.Value;