• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C#反射的应用

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

     项目框架中有一个很实用的方法,它用来获取客户端post的数据,并自动赋值到对象各属性,这样后台少写了很多代码。但是对于有主表、子表的表单,框架中没有提供自动给子表对象各属性赋值的方法,每次都要写很多代码,各种判断,各种循环,一个属性一个属性地赋值,很不方便,所以我就尝试写了一个自动赋值的方法,用到了C#反射的知识,当然,还不够完善,方法代码如下:

public List<T> GetList<T>(MvcContext ctx, string label) where T : new()
{
    List<T> tList = new List<T>();
    int count = 0;

    // 获取数据条数
    PropertyInfo[] pInfoList = (typeof(T)).GetProperties();
    foreach (PropertyInfo pInfo in pInfoList)
    {
        string values = ctx.Post(label + "." + pInfo.Name);
        if (!strUtil.IsNullOrEmpty(values))
        {
            count = values.Split(',').Length;
            break;
        }
    }

    // 给每条数据赋值
    for (int i = 0; i < count; i++)
    {
        T t = new T();

        PropertyInfo[] propertyInfoList = (typeof(T)).GetProperties();
        foreach (PropertyInfo propertyInfo in propertyInfoList) // 遍历实体的属性,以给实体的属性赋值
        {
            string values = ctx.Post(label + "." + propertyInfo.Name);
            if (!strUtil.IsNullOrEmpty(values))
            {
                string[] valueArray = values.Split(',');

if(!strUtil.IsNullOrEmpty(valueArray[i]))
{
#region 判断实体的属性的类型并赋值 if (propertyInfo.PropertyType == typeof(int)) { int val = int.Parse(valueArray[i]); propertyInfo.SetValue(t, val, null); } if (propertyInfo.PropertyType == typeof(decimal)) { decimal val = decimal.Parse(valueArray[i]); propertyInfo.SetValue(t, val, null); } if (propertyInfo.PropertyType == typeof(string)) { string val = valueArray[i]; propertyInfo.SetValue(t, val, null); } if (propertyInfo.PropertyType == typeof(DateTime)) { DateTime val = DateTime.Parse(valueArray[i]); propertyInfo.SetValue(t, val, null); } #endregion
}
} } tList.Add(t); } return tList; }

 方法的使用如下:

List<IMP_PurchasePayRealDtl> purchasePayRealDtlList = GetList<IMP_PurchasePayRealDtl>(ctx, "purchasePayRealDtl");

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
vs2015 C#打包程序为exe发布时间:2022-07-14
下一篇:
vs2015里给c#添加轮廓折叠功能发布时间:2022-07-14
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap