我有以下代码,但我遇到了问题。在我的 While 中,必须测试 r["Varandas"] 是否不为空。在特定的 imovel_id 中,r["Varandas"] 为空,但仍然通过我的代码,然后我收到异常错误,因为无法解析为 int r["Varandas"] 因为为空,但为什么他通过通过我的 While 循环中的第一个 IF ?
string s = "SELECT * "
+ "FROM San_Imovel_Caracteristica "
+ "WHERE Imovel_Id = " + imovel_id + " ";
SqlConnection c = new SqlConnection(conn.Con);
SqlCommand cmd = new SqlCommand(s, c);
c.Open();
SqlDataReader r = cmd.ExecuteReader();
while (r.Read())
{
if (r["Varandas"] != null)
{
if (Convert.ToInt32(r["Varandas"].ToString()) > 0)
{
XmlElement itemImovel1 = doc.CreateElement("itemImovel");
caracteristicasImovel.AppendChild(itemImovel1);
itemImovel1.InnerText = "varanda";
}
}
}