Làm cách nào để thêm DataColumn
một DataTable
đối tượng mới vào một đối tượng đã chứa dữ liệu?
Mã giả
//call SQL helper class to get initial data
DataTable dt = sql.ExecuteDataTable("sp_MyProc");
dt.Columns.Add("NewColumn", type(System.Int32));
foreach(DataRow row in dr.Rows)
{
//need to set value to NewColumn column
}
dt.AcceptChanges()
sau khi tôi thêm cột và giá trị mới không?