यहाँ NuGet से FastMember का उपयोग करके 2013 का अच्छा अपडेट दिया गया है:
IEnumerable<SomeType> data = ...
DataTable table = new DataTable();
using(var reader = ObjectReader.Create(data)) {
table.Load(reader);
}
यह अधिकतम प्रदर्शन के लिए FastMember के मेटा-प्रोग्रामिंग API का उपयोग करता है। यदि आप इसे विशेष सदस्यों तक सीमित करना चाहते हैं (या आदेश को लागू करते हैं), तो आप ऐसा भी कर सकते हैं:
IEnumerable<SomeType> data = ...
DataTable table = new DataTable();
using(var reader = ObjectReader.Create(data, "Id", "Name", "Description")) {
table.Load(reader);
}
एडिटर डिस / दावाकर्ता : फास्टमेम्बर एक मार्क ग्रेवेल परियोजना है। इसका सोना और फुल-ऑन फ्लाई!
हां, यह इस एक के ठीक विपरीत है ; परावर्तन पर्याप्त होगा - या यदि आपको जल्दी चाहिए, HyperDescriptor
2.0 में, या शायद Expression
3.5 में। दरअसल, HyperDescriptor
पर्याप्त से अधिक होना चाहिए।
उदाहरण के लिए:
// 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;
}
अब एक पंक्ति के साथ आप इसे प्रतिबिंब से कई गुना तेज कर सकते हैं ( HyperDescriptor
ऑब्जेक्ट-प्रकार के लिए सक्षम करके T
)।
पुन: प्रदर्शन क्वेरी संपादित करें; यहाँ परिणामों के साथ एक परीक्षण रिग है:
Vanilla 27179
Hyper 6997
मुझे संदेह है कि अड़चन सदस्य- DataTable
प्रदर्शन से स्थानांतरित हो गई है ... मुझे संदेह है कि आप उस पर बहुत सुधार करेंगे ...
कोड:
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
}
}