博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
类属性赋值
阅读量:5831 次
发布时间:2019-06-18

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

public static T ConvertAndAssignment<T>(this object obj) where T : new()

{
T t = new T();
PropertyInfo[] propertys = obj.GetType().GetProperties();
foreach (PropertyInfo property in propertys)
{
var value = property.GetValue(obj, null);
var propertyNew = typeof(T).GetProperty(property.Name);
if (propertyNew != null)
{
propertyNew.SetValue(t, value, null);
}
}
return t;
}

 

public static T PopulateEntityFromCollection
(T entity, IDataReader collection) where T : new() {
//初始化 如果为null if (entity == null) {
entity = new T(); } //得到类型 Type type = typeof(T); //取得属性集合 PropertyInfo[] pi = type.GetProperties(); foreach (PropertyInfo item in pi) {
//给属性赋值 if (collection[item.Name] != null) {
item.SetValue(entity, Convert.ChangeType(collection[item.Name], item.PropertyType), null); } } return entity; } http://blog.csdn.net/xiaohan2826/article/details/8536074 http://www.cnblogs.com/XGLSummer/articles/3017868.html

转载于:https://www.cnblogs.com/zwei1121/p/4043842.html

你可能感兴趣的文章
记录一次蚂蚁金服前端电话面试
查看>>
直播源码开发视频直播平台,不得不了解的流程
查看>>
Ubuntu上的pycrypto给出了编译器错误
查看>>
聊聊flink的RestClientConfiguration
查看>>
在CentOS上搭建git仓库服务器以及mac端进行克隆和提交到远程git仓库
查看>>
測試文章
查看>>
Flex很难?一文就足够了
查看>>
【BATJ面试必会】JAVA面试到底需要掌握什么?【上】
查看>>
CollabNet_Subversion小结
查看>>
mysql定时备份自动上传
查看>>
Linux 高可用集群解决方案
查看>>
17岁时少年决定把海洋洗干净,现在21岁的他做到了
查看>>
linux 启动oracle
查看>>
《写给大忙人看的java se 8》笔记
查看>>
倒计时:计算时间差
查看>>
Linux/windows P2V VMWare ESXi
查看>>
Windows XP倒计时到底意味着什么?
查看>>
tomcat一步步实现反向代理、负载均衡、内存复制
查看>>
运维工程师在干什么学些什么?【致菜鸟】
查看>>
Linux中iptables详解
查看>>