LINQ 根据指定属性名称对序列进行排序

Posted itclw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LINQ 根据指定属性名称对序列进行排序相关的知识,希望对你有一定的参考价值。

        /// <summary>
        /// 根据指定属性名称对序列进行排序
        /// </summary>
        /// <typeparam name="TSource">source中的元素的类型</typeparam>
        /// <param name="source">一个要排序的值序列</param>
        /// <param name="property">属性名称</param>
        /// <param name="descending">是否降序</param>
        /// <returns></returns>
        public static IQueryable<TSource> OrderBy<TSource>(this IQueryable<TSource> source, string property, bool descending) where TSource : class
        {
            ParameterExpression param = Expression.Parameter(typeof(TSource), "c");
            PropertyInfo pi = typeof(TSource).GetProperty(property);
            MemberExpression selector = Expression.MakeMemberAccess(param, pi);
            LambdaExpression le = Expression.Lambda(selector, param);
            string methodName = (descending) ? "OrderByDescending" : "OrderBy";
            MethodCallExpression resultExp = Expression.Call(typeof(Queryable), methodName, new Type[] { typeof(TSource), pi.PropertyType }, source.Expression, le);
            return source.Provider.CreateQuery<TSource>(resultExp);
        }

  

以上是关于LINQ 根据指定属性名称对序列进行排序的主要内容,如果未能解决你的问题,请参考以下文章

C# - 使用属性名称作为字符串按属性排序的代码[重复]

如何根据另一个表中的索引序列对列中的名称进行排序?

使用 Linq 按名称频率对列表进行排序

使用 soa ftp 适配器基于序列/名称进行文件排序

Linq 常用查询操作符

使用动态 LINQ 按一个或多个属性对 JSON 进行排序