LINQ OrderBy パラメーターの動的仕様
LINQ OrderBy 操作で使用されるフィールドを動的に指定する必要があるシナリオでは、リフレクション テクノロジを使用してこれを実現できます。
例:
学生のリスト existingStudents
と、並べ替えるフィールドを表すパラメーター param
があるとします。
<code class="language-csharp">List<student> existingStudents = new List<student> { ... }; string param = "City";</code>
標準実装:
デフォルトのメソッドは、並べ替えのためにハードコーディングされたプロパティ名を使用して OrderBy を呼び出します。
<code class="language-csharp">List<student> orderedByAddress = existingStudents.OrderBy(c => c.Address).ToList();</code>
動的実装:
リフレクションを使用すると、動的な表現を作成できます:
<code class="language-csharp">public static IQueryable<T> OrderBy<T>(this IQueryable<T> source, string orderByProperty, bool desc) { // 确定排序表达式 string command = desc ? "OrderByDescending" : "OrderBy"; var type = typeof(T); var property = type.GetProperty(orderByProperty); var parameter = Expression.Parameter(type, "p"); var propertyAccess = Expression.MakeMemberAccess(parameter, property); var orderByExpression = Expression.Lambda(propertyAccess, parameter); // 构建动态查询表达式 var resultExpression = Expression.Call(typeof(Queryable), command, new Type[] { type, property.PropertyType }, source.Expression, Expression.Quote(orderByExpression)); return source.Provider.CreateQuery<T>(resultExpression); }</code>
使用法:
OrderBy 拡張メソッドを使用して、任意の属性によって動的に順序付けできるようになりました:
<code class="language-csharp">List<student> orderbyAddress = existingStudents.OrderBy("City", true); // 降序 List<student> orderbyName = existingStudents.OrderBy("Name", false); // 升序</code>
以上がLINQ で OrderBy フィールドを動的に指定するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。