//获取过滤DataTable后的数据
//当前table code 是DataTable中的一列,用来做查询条件
private static DataView GetChildList(string codeValue,DataTable dt)
{
DataView dv = dt.DefaultView;
dv.RowFilter = "code='"+codeValue+"'";
return dv;
}
//当前table code 是DataTable中的一列,用来做查询条件
private void TestMethod()
{
DataView parentTree = GetChildList(codeValue, DataTable);
foreach (DataRow dr in dv.ToTable().Rows)
{
}
}