我有这段代码:
DataRow[] wingsBookingInterfaceRows =_uc090_WingsIntegrationDataSet.WingsBookingInterface.Select("WingsYDossierID =" +refmDossierId);
我需要结果来覆盖这个数据表
_uc090_WingsIntegrationDataSet.WingsBookingInterface
因为我需要遍历.Rows集合
感谢
答案 0 :(得分:1)
试试这个:
DataTable table = new DataTable();
DataTable newTable = table.Select("<SELECT QUERY>").CopyToDataTable();
答案 1 :(得分:0)
您可以使用foreach迭代DataRow[] wingsBookingInterfaceRows
。