DataReaderExtensions.IsDBNull(DbDataReader, String) 方法

定义

获取一个值,该值指示列中是否包含不存在或丢失的值。

public:
[System::Runtime::CompilerServices::Extension]
 static bool IsDBNull(System::Data::Common::DbDataReader ^ reader, System::String ^ name);
public static bool IsDBNull (this System.Data.Common.DbDataReader reader, string name);
static member IsDBNull : System.Data.Common.DbDataReader * string -> bool
<Extension()>
Public Function IsDBNull (reader As DbDataReader, name As String) As Boolean

参数

reader
DbDataReader

要从中获取列值的数据读取器。

name
String

列的名称。

返回

如果指定的列与 DBNull 等效,则为 true;否则,为 false

例外

指定的名称不是有效的列名。

注解

调用此方法以检查 null 列值,然后调用类型化Get_*_ 方法 () GetByteGetChar,以避免引发异常。

适用于

另请参阅