1

我正在使用 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
        });
    }
}
4

2 回答 2

4

尝试

 File=(sqlDataReader["File"] as string).GetValueOrDefault("");

希望这可以帮助你

参考GetValueOrDefault

于 2013-09-27T09:18:59.407 回答
3

使用DataReader 中的IsDBNull()方法。

if (sqlDataReader.HasRows)
{
  while(sqlDataReader.Read())
  {
    if(!sqlDataReader.IsDBNull(1)) //pass the column index.
    {
        object value=sqlDataReader[1];
    }

  }
 }
于 2013-09-27T09:20:50.410 回答