程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> List.Select按字符串選擇屬性,list.select字符串

List.Select按字符串選擇屬性,list.select字符串

編輯:C#入門知識

List.Select按字符串選擇屬性,list.select字符串


不知道大家有沒有遇到這樣的情況:List使用Lambda表達式的時候,想要選擇項的某個屬性列。

例如,選擇編號ID:

1 var idList=list.Select(o=>o.ID).ToList();

又,想要選擇名稱:

1 var nameList=list.Select(o=>o.Name).ToList();

可否將其抽象呢?下面是我的方法。

 1         public List<TR> GetProperty<TS, TR>(List<TS> TSource, string propertyName)
 2         {
 3             List<TR> TResult = null;
 4             if (TSource != null && TSource.Count > 0)
 5             {
 6                 var properties = TSource[0].GetType().GetProperties(System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.Instance);
 7                 if (properties != null)
 8                 {
 9                     System.Reflection.PropertyInfo property = properties.FirstOrDefault(o => o.Name == propertyName);
10                     if (property != null)
11                     {
12                         TResult = TSource.Select(o => (TR)property.GetValue(o, null)).ToList(); //轉換可自行處理。此處為了簡單起見。
13                     }
14                 }
15             }
16             return TResult;
17         }

調用時傳入輸入、輸出類型即可。

 

以上是本人臆想,如有更好方式,歡迎交流。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved