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 중국어 웹사이트의 기타 관련 기사를 참조하세요!