我想克隆從一個數據集到其他數據集的數據表的Datable,但它不起作用。從一個數據集到其他數據集的數據表克隆數據表
Dataset ds = new Dataset();
ds.Tables.Add("key");
ds.Table["key"] = cust.Tables[0].Clone(); // This line is not working
上面的代碼,給出以下錯誤
Property or indexer 'System.Data.DataTableCollection.this[int]' cannot be assigned to — it's read only
卡斯特也是一個數據集。有人可以幫助我解決這個
你說的「不工作」是什麼意思? – Marco
數據集,但它不起作用。怎麼樣? –
@AjayPandya它給錯誤屬性或索引'System.Data.DataTableCollection.this [int]'不能被分配給 - 它是隻讀的 – Richa