C# DataTable转换为Entity(反射&&泛型)

2021/4/25 20:25:37

本文主要是介绍C# DataTable转换为Entity(反射&&泛型),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

public static IEnumerableParse(IEnumerablerows) where T : class, new()
{
    if (rows == null || Enumerable.FirstOrDefault(rows) == null)
        return (IEnumerable) new T[0];
    PropertyInfo[] properties = typeof (T).GetProperties(BindingFlags.Instance | BindingFlags.Public | BindingFlags.SetProperty);
    Listlist = new List();
    foreach (DataRow row in rows)
    {
        T instance = Activator.CreateInstance();
        DbHelper.Parse((object) instance, (IEnumerable) properties, row);
        list.Add(instance);
    }
    return (IEnumerable) list;
}


private static void Parse(object obj, IEnumerableproperties, DataRow row)
{
    foreach (PropertyInfo propertyInfo in properties)
    {
        if (DataRowExtension.HasValue(row, propertyInfo.Name))
        {
            try
            {
                propertyInfo.SetValue(obj, DbHelper.ConvertType(CultureInfo.CurrentCulture, row[propertyInfo.Name], propertyInfo.PropertyType), (object[]) null);
            }
        }
        catch{ }
    }
}


这篇关于C# DataTable转换为Entity(反射&&泛型)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程