我有以下錯誤的轉換,從泛型列表<Datarow>到泛型列表<string>
List<string> esfa = NewTable.AsEnumerable().Where(row => row.Field<string>("Select")
=="true").ToList();
的代碼,而編譯得到錯誤
無法隱式轉換類型
'System.Collections.Generic.List<System.Data.Datarow>'
到'System.Collections.Generic.List<string>'
請幫幫我。
感謝喬恩我想這就是我正在尋找的 – Rohit 2013-03-07 07:39:45