C#中高效将IEnumerable转换为DataTable
将IEnumerable转换为DataTable允许开发者以结构化的表格格式处理数据。然而,现有的解决方案通常依赖于低效的基于反射的方法。本问题旨在寻找更高效的替代方案。
首先,提供的答案中的代码片段提供了一个有用的扩展方法:
<code class="language-csharp">public static DataTable ToDataTable<T>(this IEnumerable<T> items) { // 使用类型名称初始化DataTable var table = new DataTable(typeof(T).Name); // 获取类型的公共属性 PropertyInfo[] properties = typeof(T).GetProperties(BindingFlags.Public | BindingFlags.Instance); // 将属性作为列添加到DataTable foreach (var property in properties) { var propertyType = property.PropertyType; // 处理可空类型 if (propertyType.IsGenericType && propertyType.GetGenericTypeDefinition().Equals(typeof(Nullable<>))) { propertyType = Nullable.GetUnderlyingType(propertyType); } table.Columns.Add(property.Name, propertyType); } // 将每个T的属性值作为行添加到DataTable foreach (var item in items) { var values = new object[properties.Length]; for (int i = 0; i < properties.Length; i++) { values[i] = properties[i].GetValue(item); } table.Rows.Add(values); } return table; }</code>
这个扩展方法提供了一种方便且高效的方式,将IEnumerable
以上是如何在 C# 中高效地将 IEnumerable 转换为 DataTable?的详细内容。更多信息请关注PHP中文网其他相关文章!