Aqui está uma boa atualização de 2013 usando o FastMember do NuGet:
IEnumerable<SomeType> data = ...
DataTable table = new DataTable();
using(var reader = ObjectReader.Create(data)) {
table.Load(reader);
}
Isso usa a API de metaprogramação do FastMember para obter o máximo desempenho. Se você deseja restringi-lo a membros específicos (ou aplicar o pedido), também pode fazer isso:
IEnumerable<SomeType> data = ...
DataTable table = new DataTable();
using(var reader = ObjectReader.Create(data, "Id", "Name", "Description")) {
table.Load(reader);
}
Do editor Dis / reclamante: FastMember é um projecto Marc Gravell. Seu ouro e moscas cheias!
Sim, esse é exatamente o oposto deste ; reflexão seria suficiente - ou se você precisar mais rápido, HyperDescriptor
em 2.0 ou talvez Expression
em 3.5. Na verdade, HyperDescriptor
deve ser mais do que adequado.
Por exemplo:
// remove "this" if not on C# 3.0 / .NET 3.5
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;
}
Agora, com uma linha, você pode fazer isso muitas vezes mais rápido que a reflexão (ativando HyperDescriptor
o tipo de objeto T
).
editar consulta de desempenho re; aqui está uma plataforma de teste com resultados:
Vanilla 27179
Hyper 6997
Eu suspeito que o gargalo mudou do acesso dos membros ao DataTable
desempenho ... duvido que você melhore muito nisso ...
código:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
public class MyData
{
public int A { get; set; }
public string B { get; set; }
public DateTime C { get; set; }
public decimal D { get; set; }
public string E { get; set; }
public int F { get; set; }
}
static class Program
{
static void RunTest(List<MyData> data, string caption)
{
GC.Collect(GC.MaxGeneration, GCCollectionMode.Forced);
GC.WaitForPendingFinalizers();
GC.WaitForFullGCComplete();
Stopwatch watch = Stopwatch.StartNew();
for (int i = 0; i < 500; i++)
{
data.ToDataTable();
}
watch.Stop();
Console.WriteLine(caption + "\t" + watch.ElapsedMilliseconds);
}
static void Main()
{
List<MyData> foos = new List<MyData>();
for (int i = 0 ; i < 5000 ; i++ ){
foos.Add(new MyData
{ // just gibberish...
A = i,
B = i.ToString(),
C = DateTime.Now.AddSeconds(i),
D = i,
E = "hello",
F = i * 2
});
}
RunTest(foos, "Vanilla");
Hyper.ComponentModel.HyperTypeDescriptionProvider.Add(
typeof(MyData));
RunTest(foos, "Hyper");
Console.ReadLine(); // return to exit
}
}