SQLT替代DataTable.Load()

时间:2018-05-04 09:18:52

标签: c# sqlite datatable

当我尝试从DataReader加载DataTable时,它会抛出“NotSupportedException”。

简单的问题,我应该用什么替代方法来替换这段代码:

DataTable dataTable = new DataTable();
SqliteDataReader reader = command.ExecuteReader();    
dataTable.Load(reader);

1 个答案:

答案 0 :(得分:1)

你不需要替代品!版本2.1.0刚刚发布,修复了这个问题。