我有一個包含兩個表的數據集。我想從第二個表中獲取第一列的值並將其初始化爲一個int變量。
該列的名稱是CONTACT_ID從數據集中的表中返回列值
我試過這樣。
int Contract_id = Convert.ToInt32(dsDiscounts.Tables[1].Columns[0]);
但它顯示了一個錯誤:
Unable to cast object of type 'System.Data.DataColumn' to type 'System.IConvertible'.
誰能幫助我,請
它的一個簡單的例子:http://sforsuresh.in/c-getting-column-name-dataset/ –