C# linq查询之动态OrderBy用法实例
作者:xtechnet 时间:2023-11-04 04:22:56
本文实例讲述了C# linq查询之动态OrderBy用法。分享给大家供大家参考。具体分析如下:
groupList是原始数据集合,List<T>
sortOrder是排序类型,desc 或者asc
sortName是排序属性名称
1.使用反射。
private static object GetPropertyValue(object obj, string property)
{
System.Reflection.PropertyInfo propertyInfo = obj.GetType().GetProperty(property);
return propertyInfo.GetValue(obj, null);
}
var resultList = sortOrder == "desc" ? groupList.OrderByDescending(p => GetPropertyValue(p, sortName)) : groupList.OrderBy(p => GetPropertyValue(p, sortName));
//linq方式:
//
var resultList1 = from p in groupList orderby GetPropertyValue(p, m.SortName) select p;
if (sortOrder == "desc")
resultList1 = from p in groupList orderby GetPropertyValue(p, sortName) descending select p;
2.调用AsQueryable()
将泛型 System.Collections.Generic.IEnumerable<T> 转换为泛型 System.Linq.IQueryable<T>。
var groupQueryList = groupList.AsQueryable();//here
var tmpList = groupQueryList.OrderBy(sortName, sortOrder);
需要如下扩展方法:
public static IOrderedQueryable<T> OrderByDescending<T>(this IQueryable<T> source, string property)
{
return ApplyOrder<T>(source, property, "OrderByDescending");
}
public static IOrderedQueryable<T> ThenBy<T>(this IOrderedQueryable<T> source, string property)
{
return ApplyOrder<T>(source, property, "ThenBy");
}
public static IOrderedQueryable<T> ThenByDescending<T>(this IOrderedQueryable<T> source, string property)
{
return ApplyOrder<T>(source, property, "ThenByDescending");
}
static IOrderedQueryable<T> ApplyOrder<T>(IQueryable<T> source, string property, string methodName) {
string[] props = property.Split('.');
Type type = typeof(T);
ParameterExpression arg = Expression.Parameter(type, "x");
Expression expr = arg;
foreach(string prop in props) {
// use reflection (not ComponentModel) to mirror LINQ
PropertyInfo pi = type.GetProperty(prop);
expr = Expression.Property(expr, pi);
type = pi.PropertyType;
}
Type delegateType = typeof(Func<,>).MakeGenericType(typeof(T), type);
LambdaExpression lambda = Expression.Lambda(delegateType, expr, arg);
object result = typeof(Queryable).GetMethods().Single(
method => method.Name == methodName
&& method.IsGenericMethodDefinition
&& method.GetGenericArguments().Length == 2
&& method.GetParameters().Length == 2)
.MakeGenericMethod(typeof(T), type)
.Invoke(null, new object[] {source, lambda});
return (IOrderedQueryable<T>)result;
}
希望本文所述对大家的C#程序设计有所帮助。
标签:C#,linq,查询
0
投稿
猜你喜欢
浅谈关于Mybatis的mapper-locations配置问题
2023-09-24 06:06:16
Android Studio和阿里云数据库实现一个远程聊天程序
2023-06-14 21:09:16
用java WebSocket做一个聊天室
2021-11-30 00:39:55
Android自定义View实现分段选择按钮的实现代码
2022-09-06 07:46:21
C#中使用IFormattable实现自定义格式化字符串输出示例
2023-05-31 23:34:04
Springmvc拦截器执行顺序及各方法作用详解
2023-06-10 08:11:46
Java中遍历ConcurrentHashMap的四种方式详解
2023-11-17 08:54:41
Spring Cloud Alibaba实现服务的无损下线功能(案例讲解)
2022-07-05 08:14:25
Java 详解垃圾回收与对象生命周期
2022-01-21 02:54:43
Android自定义图片选择器简单版
2022-05-11 02:38:59
java 发送带Basic Auth认证的http post请求实例代码
2021-11-03 06:21:20
Linux下执行java程序的方法
2023-01-25 07:22:23
Android自定义Adapter的ListView的思路及代码
2023-10-21 17:56:16
Unity3D使用Shader实现腐蚀消失
2022-01-07 20:57:59
解析Android中string-array数据源的简单使用
2022-12-19 10:06:53
SpringBoot实现单文件与多文件上传功能
2023-03-22 23:44:11
SpringCloud 客户端Ribbon负载均衡的实现方法
2023-03-22 16:42:43
java swing实现简单计算器界面
2021-11-09 12:47:05
C#中怎么将一个List转换为只读的
2021-10-04 15:52:51
C#遍历指定目录下所有文件的方法
2021-08-29 05:52:44