首頁 > 後端開發 > C++ > 如何在 C# 中有效率地將 IEnumerable 轉換為 DataTable?

如何在 C# 中有效率地將 IEnumerable 轉換為 DataTable?

Susan Sarandon
發布: 2025-01-20 00:27:09
原創
334 人瀏覽過

How Can I Efficiently Convert an IEnumerable to a DataTable in C#?

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轉換為DataTable。透過仔細處理可空類型,它確保了資料完整性,並允許使用強類型列名檢索值。

以上是如何在 C# 中有效率地將 IEnumerable 轉換為 DataTable?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板