Datatable.Select转换为另一个数据表或覆盖相同的数据表

时间:2011-08-11 14:57:19

标签: .net ado.net

我有这段代码:

DataRow[] wingsBookingInterfaceRows =_uc090_WingsIntegrationDataSet.WingsBookingInterface.Select("WingsYDossierID =" +refmDossierId);

我需要结果来覆盖这个数据表

_uc090_WingsIntegrationDataSet.WingsBookingInterface

因为我需要遍历.Rows集合

感谢

2 个答案:

答案 0 :(得分:1)

试试这个:

DataTable table = new DataTable();            
DataTable newTable = table.Select("<SELECT QUERY>").CopyToDataTable();

答案 1 :(得分:0)

您可以使用foreach迭代DataRow[] wingsBookingInterfaceRows