我正在使用DataReader从我的sqlcommand中读取行。
我的问题是我想从我的数据库中返回所有列 错误是他在一列中找到了DBNull。
我该怎样解决这个问题?
注意:返回Null的列的类型为string。
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
});
}
}
答案 0 :(得分:3)
答案 1 :(得分:2)
使用DataReader中的 IsDBNull()方法。
if (sqlDataReader.HasRows)
{
while(sqlDataReader.Read())
{
if(!sqlDataReader.IsDBNull(1)) //pass the column index.
{
object value=sqlDataReader[1];
}
}
}