zoukankan      html  css  js  c++  java
  • 将一个列表转换成DataTable,如果列表为空将返回空的DataTable结构

         /// <summary>
            /// 将一个列表转换成DataTable,如果列表为空将返回空的DataTable结构
            /// </summary>
            /// <typeparam name="T">要转换的数据类型</typeparam>
            /// <param name="entityList">实体对象列表</param>
            public static DataTable EntityListToDataTable<T>(List<T> entityList)
            {
                DataTable dt = new DataTable();

                //取类型T所有Propertie
                Type entityType = typeof(T);
                PropertyInfo[] entityProperties = entityType.GetProperties();
                Type colType = null;
                foreach (PropertyInfo propInfo in entityProperties)
                {

                    if (propInfo.PropertyType.IsGenericType)
                    {
                        colType = Nullable.GetUnderlyingType(propInfo.PropertyType);
                    }
                    else
                    {
                        colType = propInfo.PropertyType;
                    }

                    if (colType.FullName.StartsWith("System"))
                    {
                        dt.Columns.Add(propInfo.Name, colType);
                    }
                }

                if (entityList != null && entityList.Count > 0)
                {
                    foreach (T entity in entityList)
                    {
                        DataRow newRow = dt.NewRow();
                        foreach (PropertyInfo propInfo in entityProperties)
                        {
                            if (dt.Columns.Contains(propInfo.Name))
                            {
                                object objValue = propInfo.GetValue(entity, null);
                                newRow[propInfo.Name] = objValue == null ? DBNull.Value : objValue;
                            }
                        }
                        dt.Rows.Add(newRow);
                    }
                }

                return dt;
            }

  • 相关阅读:
    《20170920-构建之法:现代软件工程-阅读笔记1》
    结对-贪吃蛇项目-开发过程
    个人-GIT使用方法
    团队-爬取豆瓣电影TOP250-开发环境搭建过程
    团队-爬取豆瓣电影TOP250-简单团队一阶段互评
    团队-爬虫电影网站-开发文档
    结对-贪吃蛇游戏-结对项目总结
    课后作业-阅读任务-阅读提问
    结对-贪吃蛇游戏-开发环境搭建过程
    结对编程贪吃蛇项目-结对编项目设计文档
  • 原文地址:https://www.cnblogs.com/dullbaby/p/2949958.html
Copyright © 2011-2022 走看看