我正在使用DataReader从我的sqlcommand中读取行。
我的问题是我想从数据库中返回所有列
错误是他在一列中找到了DBNull。
我该怎么解决呢?
注意:返回Null的列为字符串类型。
while(sqlDataReader.Read())
{
if (sqlDataReader.HasRows)
{
mylist.Add(new User()
{
Id = (int)sqlDataReader["Id"],
Name = (string)sqlDataReader["Name"],
File= (string)sqlDataReader["File"] <-- This is the one which contains some columns Null
});
}
}
最佳答案
使用DataReader中的IsDBNull()方法。
if (sqlDataReader.HasRows)
{
while(sqlDataReader.Read())
{
if(!sqlDataReader.IsDBNull(1)) //pass the column index.
{
object value=sqlDataReader[1];
}
}
}
关于c# - DataReader返回DBNULL,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19047038/