如果相關表被稱爲table1
或table2
,我想要運行loop
。目前,我正在做這樣的:根據表。表名
foreach (DataTable table in DtSet.Tables)
{
if ((table.TableName == "table1")||(table.TableName == "table2"))
{
foreach (DataRow sourceRow in table.Rows)
{
}
}
}
是否有這樣的名稱檢查不通過整個數據集必須循環中完成修改這個代碼的方法嗎? 非常感謝。
這讓我想起[介紹的,如果反模式](http://blogs.msdn.com/b/oldnewthing/archive/2011/ 27分之12/ 10251210.aspx)。 – GSerg