如何逃避此错误?我似乎无法使用IF ELSE子句,在我的查询中并非所有值都有值,因此其他列将具有“NULL”值。我想将“NULL”值显示为“0”。我该怎么做?
这是我的代码
while(readers.Read())
{
b = readers.GetInt32(0);
if (b == 0 || b == null)
{
gvModal.Rows[y].Cells[6].Text = "0";
}
}
if语句是否正确?