DataTable List 相互转换

Posted Allyte

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DataTable List 相互转换相关的知识,希望对你有一定的参考价值。

This uses the FastMember‘s meta-programming API for maximum performance. If you want to restrict it to particular members (or enforce the order), then you can do that too:
IEnumerable<SomeType> data = ...
DataTable table = new DataTable();
using(var reader = ObjectReader.Create(data, "Id", "Name", "Description")) {
    table.Load(reader);
}
使用类库: https://github.com/mgravell/fast-member
var list = dataTable.Rows.OfType<DataRow>()
    .Select(dr => dr.Field<string>(columnName)).ToList();

需引用:System.Data.DataSetExtensions

以上是关于DataTable List 相互转换的主要内容,如果未能解决你的问题,请参考以下文章

List,泛型和Datatable 的相互转换

datatable list 之前相互转换

封装一个List集合和datatable相互转换的工具类

datatable和list的转换

DataTable 和 List 相互转化

Xml与DataTable相互转换方法