码迷,mamicode.com
首页 > 编程语言 > 详细

DataSet 中的数据排序 及 DataRow装成DataTable

时间:2015-12-11 12:59:10      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

1、DataSet 中的数据排序

  DataSet ds = new DataSet();

            // 获取当前排口的数据
            ds = _xiaobill.GetHistoryData(yinZiBianm, zhanDian, beginDate, endDate, dNum);

            DataTable dt = ds.Tables[0];

            DataRow[] dt2 = dt.Select("1=1","数据时间 ASC ");

 

DataRow[]装成DataTable

  DataSet dsCheckList = _yinziBill.SearchJianKongYinZiByType(zhanDian);
            DataRow[] dr = dsCheckList.Tables[0].Select("因子国际编码 in (‘B02‘,‘01‘,‘02‘,‘03‘,‘04‘)");

            DataTable t = dsCheckList.Tables[0].Clone();
            t.Clear();

            foreach (DataRow row in dr)
            {
                t.ImportRow(row);
            }

            this.CheckBoxList1.DataSource = t;
            this.CheckBoxList1.DataValueField = "因子ID";
            this.CheckBoxList1.DataTextField = "因子名称";
            this.CheckBoxList1.DataBind();

 

DataSet 中的数据排序 及 DataRow装成DataTable

标签:

原文地址:http://www.cnblogs.com/youmingkuang/p/5038592.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!