zoukankan      html  css  js  c++  java
  • 当实体类属性超多时候 映射给实体类属性赋值(拉姆达+实体类映射)

        {
                                     attributeSumValue=  beforEntity.Sum(e => Convert.ToDecimal( e.GetType().GetProperties().Where(o => o.Name == attributeName).Single().GetValue(e, null)));
                                     var attributeBefName = "C" + attributeName.Substring(1, attributeName.Length - 1);
                                     item.GetType().GetProperties().Where(b => b.Name == attributeBefName).Single().SetValue(item, attributeSumValue, null);
                                        //foreach (T_GL_IncomeStatementDataUpload Entity in   beforEntity)
                                        //{
                                        //    Entity.GetType().GetProperties().Where(o=>o.Name==attributeName).Single().GetValue(Entity,null);
                                        //}

                                    }

  • 相关阅读:
    翻转单词顺序序列
    左旋转字符串
    查找第一个只出现一次的字符
    C语言函数与程序结构
    C语言实现快速排序法(分治法)
    C语言binsearch,shellsort,insertsort
    c语言的类型、运算符与表达式
    进程和线程
    CMS和G1
    Python IO编程
  • 原文地址:https://www.cnblogs.com/520cc/p/3949582.html
Copyright © 2011-2022 走看看