Use DBNull.Value.Equals on the object without converting it to a string.
Here’s an example:
if (! DBNull.Value.Equals(row[fieldName]))
{
//not null
}
else
{
//null
}
Use DBNull.Value.Equals on the object without converting it to a string.
Here’s an example:
if (! DBNull.Value.Equals(row[fieldName]))
{
//not null
}
else
{
//null
}