zoukankan      html  css  js  c++  java
  • C#扩展方法 DataTable.ToEntitys

    类A需要添加功能,我们想到的就是在类A中添加公共方法,这个显而易见肯定可以,但是由于某种原因,你不能修改类A本身的代码,但是确实又需要增加功能到类A中去,怎么办? 这个时候扩展方法(Extension Methods)就会帮助你完成上述功能了。现在举例如下为DataTable添加一个转ToEntities方法:

    扩展方法实现:

    using System;
    using System.Collections.Generic;
    using System.Data;
    using System.Linq;
    using System.Reflection;
    using System.Text;
    using System.Threading.Tasks;
    
    namespace CNN
    {
        //必需静态类
        public static class ExtendClass
        {
            //必需静态方法,并且使用this关键字修饰
            public static IEnumerable<T> ToEntitys<T>(this DataTable @this) where T : new()
            {
                Type type = typeof(T);
                PropertyInfo[] properties = type.GetProperties(BindingFlags.Instance | BindingFlags.Public);
                FieldInfo[] fields = type.GetFields(BindingFlags.Instance | BindingFlags.Public);
                List<T> list = new List<T>();
                foreach (DataRow dr in @this.Rows)
                {
                    T entity = (default(T) == null) ? Activator.CreateInstance<T>() : default(T);
                    PropertyInfo[] array = properties;
                    for (int i = 0; i < array.Length; i++)
                    {
                        PropertyInfo property = array[i];
                        if (@this.Columns.Contains(property.Name))
                        {
                            Type valueType = property.PropertyType;
                            property.SetValue(entity, dr[property.Name].To(valueType), null);
                        }
                    }
                    FieldInfo[] array2 = fields;
                    for (int j = 0; j < array2.Length; j++)
                    {
                        FieldInfo field = array2[j];
                        if (@this.Columns.Contains(field.Name))
                        {
                            Type valueType2 = field.FieldType;
                            field.SetValue(entity, dr[field.Name].To(valueType2));
                        }
                    }
                    list.Add(entity);
                }
                return list;
            }
        }
    }

    扩展方法使用:

    DataTable dt = GetTable();
    var list = dt.ToEntitys<MyEntitie>();

  • 相关阅读:
    spring和mybatis整合
    mybatis(二)
    Django-model基础
    用户用户组管理:用户配置文件-组信息文件
    第一章:编译程序概论
    软件包管理:脚本安装包
    软件包管理:源码包管理-源码包安装过程
    软件包管理:源码包管理-源码包与RPM包的区别
    软件包管理:yum在线管理-yum命令
    软件包管理:rpm包管理-yum在线管理-IP地址配置和网络yum源
  • 原文地址:https://www.cnblogs.com/linmilove/p/7892608.html
Copyright © 2011-2022 走看看