zoukankan      html  css  js  c++  java
  • EF 排序扩展

    public static class LinqOrderEx
        {
            private static IOrderedQueryable<T> OrderingHelper<T>(IQueryable<T> source, string propertyName, bool descending, bool anotherLevel)
            {
                ParameterExpression param = Expression.Parameter(typeof(T), string.Empty); // I don't care about some naming
                MemberExpression property = Expression.PropertyOrField(param, propertyName);
                LambdaExpression sort = Expression.Lambda(property, param);
    
                MethodCallExpression call = Expression.Call(
                    typeof(Queryable),
                    (!anotherLevel ? "OrderBy" : "ThenBy") + (descending ? "Descending" : string.Empty),
                    new[] { typeof(T), property.Type },
                    source.Expression,
                    Expression.Quote(sort));
    
                return (IOrderedQueryable<T>)source.Provider.CreateQuery<T>(call);
            }
            public static IOrderedQueryable<T> OrderBy<T>(this IQueryable<T> source, string propertyName)
            {
                return OrderingHelper(source, propertyName, false, false);
            }
            public static IOrderedQueryable<T> OrderBy<T>(this IQueryable<T> source, string propertyName, string order)
            {
                if (order.ToLower() == "desc")
                    return OrderingHelper(source, propertyName, true, false);
                else
                    return OrderingHelper(source, propertyName, false, false);
            }
    
            public static IOrderedQueryable<T> OrderByDescending<T>(this IQueryable<T> source, string propertyName)
            {
                return OrderingHelper(source, propertyName, true, false);
            }
    
            public static IOrderedQueryable<T> ThenBy<T>(this IOrderedQueryable<T> source, string propertyName)
            {
                return OrderingHelper(source, propertyName, false, true);
            }
    
            public static IOrderedQueryable<T> ThenByDescending<T>(this IOrderedQueryable<T> source, string propertyName)
            {
                return OrderingHelper(source, propertyName, true, true);
            }
    
            public static IQueryable<T> OrderByName<T>(this IQueryable<T> q, string SortField, bool Ascending = true)
            {
                if (SortField.IndexOf("DESC") > 0)
                {
                    SortField = SortField.Split(new char[] { ' ' })[0];
                    Ascending = false;
                }
                var param = Expression.Parameter(typeof(T), "p");
                var prop = Expression.Property(param, SortField);
                var exp = Expression.Lambda(prop, param);
                string method = Ascending ? "OrderBy" : "OrderByDescending";
                Type[] types = new Type[] { q.ElementType, exp.Body.Type };
                var mce = Expression.Call(typeof(Queryable), method, types, q.Expression, exp);
                return q.Provider.CreateQuery<T>(mce);
            }
            public static IQueryable<T> OrderByName<T>(this IQueryable<T> q, string SortField, string order = "desc")
            {
                if (string.IsNullOrWhiteSpace(SortField) || string.IsNullOrWhiteSpace(order))
                {
                    return q;
                }
                if (order.ToLower() == "desc")
                {
                    return OrderByName(q, SortField, false);
                }
                else
                {
                    return OrderByName(q, SortField, true);
                }
            }
    
        }
  • 相关阅读:
    [转载]深入理解JavaScript闭包(closure)
    CSS Sprite初探之原理、使用
    动软,我被你迷惑了
    win7系统下CamtasiaStudio无法录上电脑声音只能录麦克风声音的解决办法
    [转载]向高级Javascript程序员阵营迈进:Javascript一些概念研究总结
    [转载]最简单的.NET生成随机数
    [转载]完全理解关键字this
    [转载]什么是高内聚、低耦合
    [转载]CSS背景:css background属性全解析
    [转载]HTML5语音输入(淘宝语音搜索)方法
  • 原文地址:https://www.cnblogs.com/tangchun/p/7831855.html
Copyright © 2011-2022 走看看