zoukankan      html  css  js  c++  java
  • 当用反射获取一个model,这个model里面字段有nullable的时候,获取字段真实类型

    Using Reflection to Determine whether an Type is Nullable And Get the underlying Type

    /// <summary>
     /// Converts a Generic List into a DataTable
     /// </summary>
     /// <param name="list"></param>
     /// <param name="typ"></param>
     /// <returns></returns>
     private DataTable GetDataTable(IList list, Type typ)
     {
         DataTable dt = new DataTable();
    
         // Get a list of all the properties on the object
         PropertyInfo[] pi = typ.GetProperties();
    
         // Loop through each property, and add it as a column to the datatable
         foreach (PropertyInfo p in pi)
         {
             // The the type of the property
             Type columnType = p.PropertyType;
    
             // We need to check whether the property is NULLABLE
             if (p.PropertyType.IsGenericType && p.PropertyType.GetGenericTypeDefinition() == typeof(Nullable<>))
             {
                 // If it is NULLABLE, then get the underlying type. eg if "Nullable<int>" then this will return just "int"
                 columnType = p.PropertyType.GetGenericArguments()[0];
             }
    
             // Add the column definition to the datatable.
             dt.Columns.Add(new DataColumn(p.Name, columnType));
         }
    
         // For each object in the list, loop through and add the data to the datatable.
         foreach (object obj in list)
         {
             object[] row = new object[pi.Length];
             int i = 0;
    
             foreach (PropertyInfo p in pi)
             {
                 row[i++] = p.GetValue(obj, null);
             }
    
             dt.Rows.Add(row);
         }
    
         return dt;
     }



  • 相关阅读:
    java栈的实现
    浅谈JSON
    Java反射机制及IoC原理
    ApplicationContext之getBean方法详解
    web.xml中的contextConfigLocation的作用
    ApplicationContext的名称解释
    spring boot如何处理异步请求异常
    screen工具实现简单分析
    SO_LINGER选项的作用和意义
    gcc的异常处理机制
  • 原文地址:https://www.cnblogs.com/tongdengquan/p/6090466.html
Copyright © 2011-2022 走看看