选择后保存datarow?

时间:2011-08-12 11:17:05

标签: .net ado.net

我有这段代码 假设原始数据表有4行,但在选择之后,datarows集合有2行。

我需要能够在原始数据表中设置属性。

_uc090_WingsIntegrationDataSet.WingsBookingInterface[x].property = x

这里的问题是如何知道要使用哪个行索引?

DataTable tempTable = _uc090_WingsIntegrationDataSet.WingsBookingInterface.Clone();

DataRow[] datarows = _uc090_WingsIntegrationDataSet.WingsBookingInterface.Select("REFMDossierID = " + refmDossierId);

1 个答案:

答案 0 :(得分:2)

如果迭代datarows数组并检查DataRow对象的属性,我相信有一个RowIndex属性。