DataReader返回DBNULL

时间:2013-09-27 09:14:29

标签: c# asp.net asp.net-mvc

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

2 个答案:

答案 0 :(得分:3)

尝试

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

希望这可以帮到你

参考GetValueOrDefault

答案 1 :(得分:2)

使用DataReader中的 IsDBNull()方法。

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

  }
 }