在我的情况下,我正在传递一个 sql 查询并获取数据集中的数据,但是当我尝试获取 ParentId 列包含 NULL 的行时会出现问题。这是一段代码。
DataSet ds = GetDataSet("Select ProductId,ProductName,ParentId from ProductTable");
//ds is not blank and it has 2 rows in which ParentId is NULL
DataRow[] Rows = ds.Tables[0].Select("ParentId IS NULL");
但我仍然没有得到任何行。需要帮忙。谢谢。