LINQ查询在属性和复杂对象上使用动态OrderBy

时间:2012-09-12 12:18:00

标签: c# .net c#-4.0 lambda

使用下面的代码,我对FirstNameLastName排序没有任何问题 但我希望能够对NameCode进行排序。是否存在对属性进行排序的解决方案,并且此属性是“复杂对象”而不是原始对象?

谢谢,

我的对象:

public class Person
{
    public Language Language { get; set; }
    public string FirstName { get; set; }
    public string LastName { get; set; }
}

public class Language
{
    public string Name { get; set; }
    public string Code { get; set; }
}

我有这段代码要排序:

var type = typeof(T);
var property = type.GetProperty("OrderBy");
var parameter = Expression.Parameter(type, "p");
var propertyAccess = Expression.MakeMemberAccess(parameter, property);
var orderByExp = Expression.Lambda(propertyAccess, parameter);
MethodCallExpression resultExp = 
    Expression.Call(typeof(Queryable), 
    "OrderBy",
    new Type[] { type, property.PropertyType }, 
    source.Expression, 
    Expression.Quote(orderByExp));
return source.Provider.CreateQuery<T>(resultExp);

1 个答案:

答案 0 :(得分:1)

  

是否有对属性进行排序的解决方案,此属性是“复杂对象”而不是原始对象?

当然 - 你必须基本上创建一个等同于:

的表达式树
data.OrderBy(p => p.Language.Name)

这基本上是两个属性访问表达式,其中一个的“源”是另一个的“结果”。因此,您需要获取属性字符串(例如“Language.Name”),将其拆分为多个部分,然后迭代各个位,将当前表达式保留为目标。类似的东西:

Expression parameter = Expression.Parameter(type, "p");
Expression target = parameter;
foreach (string property in propertyParts)
{
    target = Expression.Property(target, property);
}
var orderByExp = Expression.Lambda(target, parameter);