C#中向可为空的INT 型字段插入NULL值

在.net 2.0中提供了一个新的类型修饰符,可用于创建空类型,如下

int? x;

x=null,

传入x即可。

如果要作为参数传递的话null要用

if (Parameter.Value == null)
{
Parameter.Value = DBNull.Value;
}

Leave a Reply

Your email address will not be published. Required fields are marked *