我有一个对象列表如下:
List<UserTransactionDTO>
我想将此列表转换为Datatable
.
我搜索并找到以下链接:
它对我有用,但我不知道如何实现HyperDescriptor
以使其更快。是否有一些 dll 可以使用?
我只是在上一个链接中使用以下代码,它工作正常:
public static DataTable ToDataTable<T>(this IList<T> data)
{
PropertyDescriptorCollection props =
TypeDescriptor.GetProperties(typeof(T));
DataTable table = new DataTable();
for(int i = 0 ; i < props.Count ; i++)
{
PropertyDescriptor prop = props[i];
table.Columns.Add(prop.Name, prop.PropertyType);
}
object[] values = new object[props.Count];
foreach (T item in data)
{
for (int i = 0; i < values.Length; i++)
{
values[i] = props[i].GetValue(item);
}
table.Rows.Add(values);
}
return table;
}