我有这段代码 假设原始数据表有4行,但在选择之后,datarows集合有2行。
我需要能够在原始数据表中设置属性。
_uc090_WingsIntegrationDataSet.WingsBookingInterface[x].property = x
这里的问题是如何知道要使用哪个行索引?
DataTable tempTable = _uc090_WingsIntegrationDataSet.WingsBookingInterface.Clone();
DataRow[] datarows = _uc090_WingsIntegrationDataSet.WingsBookingInterface.Select("REFMDossierID = " + refmDossierId);
答案 0 :(得分:2)
如果迭代datarows数组并检查DataRow对象的属性,我相信有一个RowIndex属性。