当前位置:
首页 > Python基础教程 >
-
C#教程之C# AutoMapper的简单扩展
AutoMapper可以很方便的将一个实体的属性值转化给另一个对象。这个功能在我们日常的编码中经常会遇到。我将AutoMapper的一些基本映射功能做成扩展方法,在编码中更方便使用。
using System; using System.Collections.Generic; using System.Linq; using System.Text; using AutoMapper; using System.Collections; using System.Data; using System.Reflection; namespace NFMES.Core.Type { public static class AutoMapperExtension { /// <summary> /// 实体对象转换 /// </summary> /// <typeparam name="TDestination"></typeparam> /// <param name="o"></param> /// <returns></returns> public static TDestination MapTo<TDestination>(this object o) { if (o == null) throw new ArgumentNullException(); Mapper.CreateMap(o.GetType(), typeof(TDestination)); return Mapper.Map<TDestination>(o); ; } /// <summary> /// 集合转换 /// </summary> /// <typeparam name="TDestination"></typeparam> /// <param name="o"></param> /// <returns></returns> public static List<TDestination> MapTo<TDestination>(this IEnumerable o) { if (o == null) throw new ArgumentNullException(); foreach (var item in o) { Mapper.CreateMap(item.GetType(), typeof(TDestination)); break; } return Mapper.Map<List<TDestination>>(o); } /// <summary> /// 将 DataTable 转为实体对象 /// </summary> /// <typeparam name="T"></typeparam> /// <param name="dt"></param> /// <returns></returns> public static List<T> MapTo<T>(this DataTable dt) { if (dt == null || dt.Rows.Count == 0) return default(List<T>); Mapper.CreateMap<IDataReader, T>(); return Mapper.Map<List<T>>(dt.CreateDataReader()); } /// <summary> /// 将List转换为Datatable /// </summary> /// <typeparam name="T"></typeparam> /// <param name="list"></param> /// <returns></returns> public static DataTable MapToTable<T>(this IEnumerable list) { if (list == null) return default(DataTable); //创建属性的集合 List<PropertyInfo> pList = new List<PropertyInfo>(); //获得反射的入口 System.Type type = typeof(T); DataTable dt = new DataTable(); //把所有的public属性加入到集合 并添加DataTable的列 Array.ForEach<PropertyInfo>(type.GetProperties(), p => { pList.Add(p); dt.Columns.Add(p.Name, p.PropertyType); }); foreach (var item in list) { //创建一个DataRow实例 DataRow row = dt.NewRow(); //给row 赋值 pList.ForEach(p => row[p.Name] = p.GetValue(item, null)); //加入到DataTable dt.Rows.Add(row); } return dt; } } }
这个静态类中有4个扩展方法,分别对Object类型,IEnumberable类型,DataTable类型添加了MapTo方法,可以方便的将对象映射到对象,集合映射到集合,表映射到集合,集合映射到表(这个功能AutoMapper不支持,我用反射实现的)
单实体转化使用方式:
集合转化的使用方式:
AutoMapper还有很多功能,我这个类只扩展了一些最基本和常用的功能,以后用到会继续添加。
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式