[CSharpTips]C# 将DataTable转换为类

2022/9/2 1:24:25

本文主要是介绍[CSharpTips]C# 将DataTable转换为类,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

将DataTable转换为类

众所周知,有时候我们需要将sql查询返回的DataTable转换为类。最开始是使用循环一个个给类的属性赋值,但是这样效率低并且无法复用。

后来了解到利用DataTable添加扩展方法可以轻松的实现这一功能

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

namespace DataTableEx
{
    public static class DataTableEx
    {
        public static List<T> ToList<T>(this DataTable dt) where T : new()
        {
            List<T> ts = new List<T>();
            foreach (DataRow dr in dt.Rows)
            {
                T t = new T();
                foreach (var c in dt.Columns)
                {
                    object value = dr[c.ToString()];
                    if (value != DBNull.Value)
                    {
                        var p = t.GetType().GetProperty(c.ToString());
                        if (p != null)
                        {
                            p.SetValue(t, ConvertHelper.ChangeType(value, p.PropertyType), null);
                        }
                    }
                }
                ts.Add(t);
            }
            return ts;
        }


        public static T ToData<T>(this DataTable dt) where T : new()
        {
            if (dt.Rows.Count>1)
            {
                throw new Exception("");
            }
            List<T> ts = new List<T>();
            foreach (DataRow dr in dt.Rows)
            {
                T t = new T();
                foreach (var c in dt.Columns)
                {
                    object value = dr[c.ToString()];
                    if (value != DBNull.Value)
                    {
                        var p = t.GetType().GetProperty(c.ToString());
                        if (p != null)
                        {
                            p.SetValue(t, ConvertHelper.ChangeType(value, p.PropertyType), null);
                        }
                    }
                }
                return t;
            }
            return default(T);
        }

        public static void  FillData<T>(this DataTable dt,ref T t) where T : new()
        {
            if (dt.Rows.Count > 1)
            {
                throw new Exception("");
            }
            foreach (DataRow dr in dt.Rows)
            {
        
                foreach (var c in dt.Columns)
                {
                    object value = dr[c.ToString()];
                    if (value != DBNull.Value)
                    {
                        var p = t.GetType().GetProperty(c.ToString());
                        if (p != null)
                        {
                            p.SetValue(t, ConvertHelper.ChangeType(value, p.PropertyType), null);
                        }
                    }
                }
            }
        }

    }
}

上面三个方法

1. 将DataTable转化为List<T>,使用DataTable.ToList<T>();

2. 将DataTable转化为<T>,使用DataTable.ToData<T>();

3. 填充已有<T>内容,使用DataTable.FillData<T>();

注:

1. ConvertHelper类请参考 https://www.cnblogs.com/axiaoshuye/articles/15697734.html

2. 转换的前提条件是DataTable字段名要与对应类的属性名一致



这篇关于[CSharpTips]C# 将DataTable转换为类的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程