DataSet myDS=new DataSet();
myDS.ReadXml("test.xml");
DataTable myTable= new DataTable();
myTable=myDS.Tables[0];
DataRow[] myRow;
myRow=myTable.Select("SEX='1'");
this.dgSight.DataSource=myTable;
在dataset中怎么获取经过条件选择的数据
最新推荐文章于 2021-07-20 16:19:34 发布