C#两个实体之间相同属性的映射

public static R Mapping<R, T>(T model)
{
R result = Activator.CreateInstance<R>();
foreach(PropertyInfo info in typeof(R).GetProperties())
{
PropertyInfo pro = typeof(T).GetProperty(info.Name);
if (pro != null)
info.SetValue(result, pro.GetValue(model));
}
return result;
}

R代表目标实体   T代表数据源实体

上一篇:【我的Android进阶之旅】 Google Developers中国网站发布啦!


下一篇:夺命雷公狗---2016-linux---2之软件实现远程登录