SqlParameter.IsNullable 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指示参数是否接受 null 值。 IsNullable 不用于验证参数的值,并且在执行命令时不会阻止发送或接收 null 值。
public:
virtual property bool IsNullable { bool get(); void set(bool value); };
public override bool IsNullable { get; set; }
member this.IsNullable : bool with get, set
Public Overrides Property IsNullable As Boolean
属性值
如果接受 null 值,则为 true
;否则为 false
。 默认值为 false
。
示例
以下示例创建 SqlParameter 并设置其一些属性。
// using Microsoft.Data.SqlClient;
static void CreateSqlParameterNullable()
{
SqlParameter parameter = new SqlParameter("Description", SqlDbType.VarChar, 88);
parameter.IsNullable = true;
parameter.Direction = ParameterDirection.Output;
}
注解
使用 类处理 DBNull Null 值。