如何将List <t>或IEnumerable <t>转换为DataTable </t> </t>

时间:2011-07-08 00:18:09

标签: .net

  

可能重复:
  Convert IEnumerable to DataTable

我只想通过扩展方法或Util类将List或IEnumerable转换为DataTable。

1 个答案:

答案 0 :(得分:0)

我使用以下扩展方法从IEnumerable生成数据库。 希望这会有所帮助。

        public static DataTable ToDataTable<TSource>(this IEnumerable<TSource> source)
        {
            var tb = new DataTable(typeof (TSource).Name);
            var props = typeof (TSource).GetProperties(BindingFlags.Public | BindingFlags.Instance);

            foreach (var prop in props)
            {
                Type t = GetCoreType(prop.PropertyType);
                tb.Columns.Add(prop.Name, t);
            }

            foreach (var item in source)
            {
                var values = new object[props.Length];

                for (var i = 0; i < props.Length; i++)
                {
                    values[i] = props[i].GetValue(item, null);
                }
                tb.Rows.Add(values);
            }
            return tb;
        }

    public static Type GetCoreType(Type t)
    {
        return t != null && IsNullable(t) 
               ? (!t.IsValueType ? t : Nullable.GetUnderlyingType(t)) : t;
    }


    public static bool IsNullable(Type t)
    {
        return !t.IsValueType || (t.IsGenericType 
               && t.GetGenericTypeDefinition() == typeof(Nullable<>));
    }