我擁有匿名在此列出,並試圖將其數據加載到數據表,但得到一個錯誤集合泛型列表匿名類型設置爲系統Data.IDataReader
var empList1 = employees.Select(p => new { UserId = p.UserId, empName = p.FullName, EmpCode = p.EmployeeCode }).Distinct().ToList();
DataTable dtt = new DataTable();
// dtt.Load(empList1);
嚴重性代碼說明項目文件線路抑制狀態工具 錯誤CS1503參數1:無法從'System.Collections.Generic.List <>'轉換爲'System.Data.IDataReader'
任何解決方案?
你到底想達到什麼目的? – ChrisBint
我有一個列表,我綁定到gridview例如: gvTest.DataSource = empList; gvTest.DataBind(); 但後來我想要導出數據到Excel – Aamir
http://stackoverflow.com/questions/19404222/bind-data-in-listt-to-datagridview – ChrisBint