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中文網其他相關文章!