ds.Tables.Count > 0 && ds.Tables[0].Rows.Count == 1

问题描述:

ds.Tables.Count > 0 && ds.Tables[0].Rows.Count == 1

public MLimitUser GetModel(string strWhere) {
DataSet ds = GetList(strWhere);
//if (ds.Tables.Count > 0 && ds.Tables[0].Rows.Count == 1)
if (ds.Tables.Count > 0 )
{
//ds.Tables.Count =1;
string t=ds.Tables[0].Rows[0][0].ToString();//这里却 报错在位置 0 处没有任何行
//return DataRowToModel(ds.Tables[0].Rows[0]);
}
return null;
}
1个回答 分类:综合 2014-09-24

问题解答:

我来补答
估计是你的Tables[0]中没有值,你单步调试下,看看Tables[0]中有没有值
 
 
展开全文阅读
剩余:2000
上一页:第九题,详解
下一页:gyyv