zoukankan      html  css  js  c++  java
  • C#反射的应用

         项目框架中有一个很实用的方法,它用来获取客户端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");
  • 相关阅读:
    JIRA4.1 主要功能
    linux之间的远程复制文件
    我在做测试 1
    JOGL简介与安装
    Eclipse RCP中的IAdaptable是什么?
    如何实现关系表的级联删除(ON DELETE CASCADE的用法)
    ubuntu 安装mysql+apache+php
    ubuntu10.10安装VMWare tools
    Struts2 Unable to load configuration. bean 错误解决
    MySQL Workbench “Error Code: 1175” 的解决方法
  • 原文地址:https://www.cnblogs.com/s0611163/p/3969056.html
Copyright © 2011-2022 走看看