Why is my comparison to null, of a value contained in a System.Data.DataRow object, failing?

StackOverflow https://stackoverflow.com/questions/7688794

Вопрос

I am converting an app's database from Access to MS SQL Server and encountered a problem with a line of code that checks to see if an item retrieved from the database is null.

It essentially looks like this:

if (System.Data.DataRow["foo"] == null)
{
    //do something
}

I know the value in column "foo" is null, but the check fails. It works against an Access database, but not MS SQL Server. I can see why. The call is returning "{}" instead of null. Why?

Это было полезно?

Решение

Try checking against DbNull.Value instead of null

Другие советы

Try:

if (System.Data.DataRow["foo"].IsDBNull)
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top