码迷,mamicode.com
首页 > Windows程序 > 详细

C# - linq查询现有的DataTable

时间:2015-01-18 18:33:55      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:

可以通过linq对现有的DataTable进行查询,并将结果拷贝至新的DataTable中例如:

// Query the SalesOrderHeader table for orders placed 
// after August 8, 2001.
IEnumerable<DataRow> query =
    from order in orders.AsEnumerable()
    where order.Field<DateTime>("OrderDate") > new DateTime(2001, 8, 1)
    select order;

// Create a table from the query.
DataTable boundTable = query.CopyToDataTable<DataRow>();

 

C# - linq查询现有的DataTable

标签:

原文地址:http://www.cnblogs.com/listened/p/4232034.html

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