我试图在一个函数中返回这个集合:
List<string> codes = ( from q in Data.AsEnumerable() select q.Field<string>("START") );
return codes;
这会引发错误:
Cannot implicitly convert type 'System.Data.EnumerableRowCollection<string>' to 'System.Collections.Generic.List<string>'
退回此类收藏的最佳方式是什么?