基本上,我正在将 SQL 数据表转换为可以成功完成的通用列表。但我不知道如何返回列表对象。我收到一个错误,说是 - 无法将类型 System.Collections.Generic.IList 隐式转换为 System.Collections.Generic.List
将 theList 作为 List 类型返回的正确方法是什么?
public List<MyObject> GetAllMyObjects()
{
String command = "select * from names ";
DataTable tableResult = DataTableToList.ExecuteDataTable(command, CommandType.Text, null,connectionString);
IList<MyObject> theList = DataTableToList.ConvertTo<MyObject>(tableResult);
return // I’m not sure how to return theList here...
}