【回転】C#クラスの属性を遍歴して値を取り出す

5141 ワード

エンティティを巡回して、エンティティの名前とタイプを取得します.
namespace WeiXinApi.CommonCS
{
    public class ForeachClass
    {
        /// 
        /// C#        
        /// 
        ///     
        ///   
        public static void ForeachClassProperties(T model)
        {
            Type t = model.GetType();
            PropertyInfo[] PropertyList = t.GetProperties();
            foreach (PropertyInfo item in PropertyList)
            {
                string name = item.Name;
                object value = item.GetValue(model, null);
            }
        }
    }
}

変更:
        /// 
        /// C#        
        /// 
        ///     
        ///   
        public static void ForeachClassProperties(T model)
        {
            Type t = model.GetType();
            PropertyInfo[] PropertyList = t.GetProperties();
            foreach (PropertyInfo item in PropertyList)
            {
                string name = item.Name;
                object value = item.GetValue(model, null);
                
                Console.WriteLine(name);

                if (item.PropertyType.IsGenericType && item.PropertyType.GetGenericTypeDefinition() == typeof(Nullable<>))
                {
                    // If it is NULLABLE, then get the underlying type. eg if "Nullable" then this will return just "int"
                    var columnType = item.PropertyType.GetGenericArguments()[0];
                    Console.WriteLine(columnType);
                }
                else
                {
                    Console.WriteLine(item.PropertyType.Name);
                }
                Console.WriteLine();
            }
        }

私たちのアプリケーションでは、クラスを使用してビジネス・オブジェクトを記述し、レポートなどを生成します.それは、多くの異なるオブジェクトに依存しています.ビジネス・オブジェクトを変換するためのヘルプ・メソッドを作成したり、リストのビジネス・オブジェクトをDataTable.
データベーステーブルのフィールドはnullとすることができるため、対応する.Net 2.0以降はNullableタイプで実装できます.ビジネス・オブジェクト・クラスのフィールドにnullがあり、DataTableに変換する必要がある場合、このシーンを生成するには、次の方法を使用します.
/// 
 /// Converts a Generic List into a DataTable
 /// 
 /// 
 /// 
 /// 
 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" 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;
 }

上のコードのキー:
  • 用PropertyType.IsGenericTypeは、propertyがgenericタイプ
  • であるかどうかを決定する
  • 用ProprtyType.GetGenericType Definition()==typeof(Nullable<>)nullableタイプ
  • であるかどうかを検出
  • 用PropertyType.GetGenericArguments()ベースタイプを取得します.

  • 次に適用します.
    public class Person
    {
        public string Name { get; set; }
        public DateTime DateOfBirth { get; set; }
        public DateTime? DateOfDeath { get; set; }
    }
    
    public class Example
    {
        public static DataTable RunExample()
        {
            Person edward = new Person() { Name = "Edward", DateOfBirth = new DateTime(1900, 1, 1), DateOfDeath = new DateTime(1990, 10, 15) };
            Person margaret = new Person() { Name = "Margaret", DateOfBirth = new DateTime(1950, 2, 9), DateOfDeath = null };
            Person grant = new Person() { Name = "Grant", DateOfBirth = new DateTime(1975, 6, 13), DateOfDeath = null };
    
            List people = new List();
    
            people.Add(edward);
            people.Add(margaret);
            people.Add(grant);
    
            DataTable dt = GetDataTable(people, typeof(Person));
    
            return dt;
        }
    }

    返されるDataTableは、次のようになります.
    Name (string)
    DateOfBirth (DateTime)
    DateOfDeath (DateTime)
    Edward
    1/1/1900
    15/10/1990
    Margaret
    9/2/1950
    [NULL]
    Grant
    13/6/1975
    [NULL]
    総合転入:
    https://www.cnblogs.com/Stephenchao/p/4481990.html
    https://www.cnblogs.com/chenwolong/p/fanshe.html