为了账号安全,请及时绑定邮箱和手机立即绑定

[工具类]泛型集合转换为DataTable

标签:
C#

写在前面

在实际项目中,用到了将集合转换为DataTable,就试着封装了一个方法,记录一下。

代码

using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;

namespace Wolfy.List2DataTable
{
   class Program
   {
       static void Main(string[] args)
       {
           List<Person> lst = new List<Person>()
           {
               new Person(){ ID=1, Gender=false, Name="wolfy1"},
                new Person(){ ID=2, Gender=false, Name="wolfy2"},
                 new Person(){ ID=3, Gender=false, Name="wolfy3"},
                  new Person(){ ID=4, Gender=false, Name="wolfy4"},
                   new Person(){ ID=5, Gender=false, Name="wolfy5"},
           };
           DataTable dt = List2DataTable<Person>(lst);
           Console.WriteLine("转换结束");
           Console.Read();
       }
       /// <summary>
       /// 将泛型集合转换为datatable
       /// </summary>
       /// <typeparam name="TEntity"></typeparam>
       /// <param name="entities"></param>
       /// <returns></returns>
       static DataTable List2DataTable<TEntity>(List<TEntity> entities)
       {
           if (entities == null)
           {
               throw new ArgumentNullException("转换的集合为空");
           }
           Type type = typeof(TEntity);
           PropertyInfo[] properties = type.GetProperties();
           DataTable dt = new DataTable(type.Name);
           foreach (var item in properties)
           {
               dt.Columns.Add(new DataColumn(item.Name) { DataType = item.PropertyType });
           }
           foreach (var item in entities)
           {
               DataRow row = dt.NewRow();
               foreach (var property in properties)
               {
                   row[property.Name] = property.GetValue(item);
               }
               dt.Rows.Add(row);
           }
           return dt;
       }
   }
   public class Person
   {
       public int ID { set; get; }
       public string Name { set; get; }
       public bool Gender { set; get; }
   }
}

测试结果:

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消