【发布时间】:2013-03-07 07:32:12
【问题描述】:
我有下面的代码
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>'
请帮忙。
【问题讨论】:
标签: c# .net linq compiler-errors