博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
反射ModelToDto
阅读量:5103 次
发布时间:2019-06-13

本文共 1390 字,大约阅读时间需要 4 分钟。

public class ModelToDTO    {        ///         /// 根据模型对象获取扁平类对象        ///         /// 
模型类
///
传输类
/// 模型类对象 /// 传输类对象 ///
public static T GetDTOModel
(S s, T t) { if (s != null) { AutoMapping
(s, t); return t; } else { return default(T); } } ///
/// 实体属性反射 /// ///
赋值对象
///
被赋值对象
///
///
private static void AutoMapping
(S s, T t) { PropertyInfo[] pps = GetPropertyInfos(s.GetType()); Type target = t.GetType(); foreach (var pp in pps) { PropertyInfo targetPP = target.GetProperty(pp.Name); object value = pp.GetValue(s, null); if (targetPP != null && value != null) { targetPP.SetValue(t, value, null); } } } //获取对象属性 private static PropertyInfo[] GetPropertyInfos(Type type) { return type.GetProperties(BindingFlags.Public | BindingFlags.Instance); } }

  

转载于:https://www.cnblogs.com/Kuleft/p/11088179.html

你可能感兴趣的文章
#Leetcode# 209. Minimum Size Subarray Sum
查看>>
SDN第四次作业
查看>>
DM8168 DVRRDK软件框架研究
查看>>
django迁移数据库错误
查看>>
yii 跳转页面
查看>>
洛谷 1449——后缀表达式(线性数据结构)
查看>>
Data truncation: Out of range value for column 'Quality' at row 1
查看>>
Dirichlet分布深入理解
查看>>
(转)Android之发送短信的两种方式
查看>>
python第九天课程:遇到了金角大王
查看>>
字符串处理
查看>>
HtmlUnitDriver 网页内容动态抓取
查看>>
ad logon hour
查看>>
获得进程可执行文件的路径: GetModuleFileNameEx, GetProcessImageFileName, QueryFullProcessImageName...
查看>>
证件照(1寸2寸)拍摄处理知识汇总
查看>>
罗马数字与阿拉伯数字转换
查看>>
Eclipse 反编译之 JadClipse
查看>>
Python入门-函数
查看>>
[HDU5727]Necklace(二分图最大匹配,枚举)
查看>>
距离公式汇总以及Python实现
查看>>