【전환】C#클래스의 속성을 옮겨다니며 값을 추출합니다

5169 단어 Asp.NetC#
솔리드를 반복하여 솔리드의 이름과 유형을 얻습니다.
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();
            }
        }

Google 응용 프로그램에서 Google은 클래스를 사용하여 Google 업무 대상을 설명하고, 보고서 같은 것을 만들어 줍니다. 다양한 대상에 의존하고, Google은 Google 업무 대상을 전환하거나, List의 업무 대상을 DataTables로 전환하는 데 도움을 줍니다.
데이터베이스 테이블의 필드가null이기 때문에 대응합니다.net2.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.GetGenericTypeDefinition()=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

    좋은 웹페이지 즐겨찾기