0
我有困難初始化DataTable
與對象初始化指定Columns
和PrimaryKey
:DataTable對象初始化與主鍵
private DataTable _products = new DataTable
{
Columns = { { "Product", typeof(string) }, { "Lot", typeof(string) }, { "Qty", typeof(int) } },
PrimaryKey = Columns[0] //Columns doens't exist in the current context
};
有沒有一種方法,使工作?
這是一個不場的局部變量 –