2009-12-06 63 views
0

說我有這樣的現有代碼:數據表的特殊合併。 (ADO.NET)

datatable dt = new datatable(); 

for (i=0;i<...;i++) 
{ 
dt = ..\\gets the i'th datatable somehow.Note: all datatables share the same scheme. 
DoSomethingWithDt() 
} 
... 

我想要的,是在這個程序結束時,我也有一個DATATABLE相同模式與以上那些,除了額外的名爲「id」的列。該表將包含所有表中的所有行,但原始i'th數據表的所有行都將i作爲id列中的值。

我不知道如何做到這一點,雖然聽起來可以..如何?

10x !!

回答