讓Linq的OrderBy支援動態欄位,linqorderby

來源:互聯網
上載者:User

讓Linq的OrderBy支援動態欄位,linqorderby

使用linq的OrderBy,如果明確知道是哪個欄位,當然很容易:

 IQueryable<User> userQuery = ...; userQuery.OrderBy(u => u.Code)

但假如我們想寫一個通用方法,預先並不知道要用哪個欄位排序呢?

在網上尋尋覓覓,有許多國內的部落格互相抄襲,信誓旦旦,但其實那些代碼都運行不了。

還是老外的好使:
http://www.4byte.cn/question/33782/dynamic-orderby-using-linq-dynamic.html

我拿來修改了一下,可以用。主要思想是擴充Queryable。但裡面的東西有許多我都看不懂。

    public static class QueryableExtension    {        public static IOrderedQueryable<T> OrderBy<T>(this IQueryable<T> query, string propertyName)        {            return _OrderBy<T>(query, propertyName, false);        }        public static IOrderedQueryable<T> OrderByDescending<T>(this IQueryable<T> query, string propertyName)        {            return _OrderBy<T>(query, propertyName, true);        }        static IOrderedQueryable<T> _OrderBy<T>(IQueryable<T> query, string propertyName,bool isDesc)        {            string methodname = (isDesc) ? "OrderByDescendingInternal" : "OrderByInternal";            var memberProp = typeof(T).GetProperty(propertyName);            var method = typeof(QueryableExtension).GetMethod(methodname)                                       .MakeGenericMethod(typeof(T), memberProp.PropertyType);            return (IOrderedQueryable<T>)method.Invoke(null, new object[] { query, memberProp });        }        public static IOrderedQueryable<T> OrderByInternal<T, TProp>(IQueryable<T> query, PropertyInfo memberProperty)        {//public            return query.OrderBy(_GetLamba<T, TProp>(memberProperty));        }        public static IOrderedQueryable<T> OrderByDescendingInternal<T, TProp>(IQueryable<T> query, PropertyInfo memberProperty)        {//public            return query.OrderByDescending(_GetLamba<T, TProp>(memberProperty));        }        static Expression<Func<T, TProp>> _GetLamba<T, TProp>(PropertyInfo memberProperty)        {            if (memberProperty.PropertyType != typeof(TProp)) throw new Exception();            var thisArg = Expression.Parameter(typeof(T));            var lamba = Expression.Lambda<Func<T, TProp>>(Expression.Property(thisArg, memberProperty), thisArg);            return lamba;        }    }

調用:

IQueryable<User> userQuery = ...;//正序userQuery = userQuery.OrderBy("Code");//降序userQuery = userQuery.OrderByDescending("Code");

著作權聲明:本文為博主原屙文章,喜歡你就擔走。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.