ASP.Net MVC+Data Table实现分页+排序功能的方法(2)

... public static IQueryable<T> OrderByEx<T>(this IQueryable<T> q, string direction, string fieldName) { try { var customProperty = typeof(T).GetCustomAttributes(false).OfType<ColumnAttribute>().FirstOrDefault(); if (customProperty != null) { fieldName = customProperty.Name; } var param = Expression.Parameter(typeof(T), "p"); var prop = Expression.Property(param, fieldName); var exp = Expression.Lambda(prop, param); string method = direction.ToLower() == "asc" ? "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); } catch (Exception ex) { _log.ErrorFormat("error form OrderByEx."); _log.Error(ex); throw ; } } ...

更多关于asp.net相关内容感兴趣的读者可查看本站专题:《asp.net优化技巧总结》、《asp.net字符串操作技巧汇总》、《asp.net操作XML技巧总结》、《asp.net文件操作技巧汇总》、《asp.net ajax技巧总结专题》及《asp.net缓存操作技巧总结》。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wdpdxw.html