摘要:
有时我们需要从DataTable中抽取Distinct数据,以前总是以对DataTable进行foreach之类纯手工方式获取。 近来发现DataView可以帮我们直接获取Distinct数据,汗一个! DataSet ds = new DataSet();ds = GetDS()//自己获得数据源的方法 DataTable dt = ds.Tables[0]; //注:其中ToTable... 阅读全文
posted @ 2009-12-11 20:18 lining 阅读(401) 评论(0) 推荐(0) 编辑