12

我正在尝试OrderBy使用 lambda 表达式生成一个 LINQ 子句,并将实体的列名作为字符串输入(在下面的“sortOn”变量中)。

下面的代码适用于 sortOn 值,如生成 lambda 的“代码”

p => p.Code

但我也想对一个子实体进行排序,其中 lambda 可能在

p => p.Category.Description

所以在这种情况下,我只想设置 sortOn = "Category.Description" 并生成正确的 lamdba 表达式。

这可能吗?任何有关执行此操作的最佳方法的建议都将受到欢迎。

此代码适用于简单的情况:

var param = Expression.Parameter(typeof (Product), "p");

var sortExpression = Expression.Lambda<Func<Product, object>>(
    Expression.Property(param, sortOn), param);

if (sortAscending ?? true)
{
   products = products.OrderBy(sortExpression);
}
else
{
   products = products.OrderByDescending(sortExpression);
}

此问题的用例是显示数据网格并能够对数据进行排序,只需将要排序的列名传递回服务器即可。我想让解决方案通用,但现在已经开始使用特定类型(示例中的产品)。

4

5 回答 5

19

这将生成正确的 lambda 表达式:

var sortOn = "Category.Description";
var param = Expression.Parameter(typeof(Product), "p");
var parts = sortOn.Split('.');

Expression parent = param;

foreach (var part in parts)
{
    parent = Expression.Property(parent, part);
}

var sortExpression = Expression.Lambda<Func<Product, object>>(parent, param);
于 2012-07-13T17:10:31.230 回答
2

您可以使用动态 LINQ 查询库轻松完成此操作。假设你有一个IQueryable<T>实现Product你可以很容易地做到:

IQueryable<Product> products = ...;

// Order by dynamically.
products = products.OrderBy("Category.Description");

博客文章有一个指向 libary 的链接,您必须自己在解决方案中构建/包含该项目,但它运行良好,并且解析非常健壮。它使您不必自己编写解析代码;即使对于如此简单的事情,如果需求扩展,该库也可以满足您的需求,而本土解决方案却没有。

它还具有许多其他动态运算符(SelectWhere等),因此您可以执行其他动态操作。

引擎盖下没有魔法,它只是解析你传递给它的字符串,然后根据解析结果创建 lambda 表达式。

于 2012-07-13T17:28:36.810 回答
2

这是一个扩展OrderBy方法,它适用于任意数量的嵌套参数。

public static IQueryable<T> OrderBy<T>(this IQueryable<T> query, string key, bool asc = true)
{
  try
  {
    string orderMethodName = asc ? "OrderBy" : "OrderByDescending";
    Type type = typeof(T);
    Type propertyType = type.GetProperty(key)?.PropertyType; ;

    var param = Expression.Parameter(type, "x");
    Expression parent = param;

    var keyParts = key.Split('.');
    for (int i = 0; i < keyParts.Length; i++)
    {
      var keyPart = keyParts[i];
      parent = Expression.Property(parent, keyPart);

      if (keyParts.Length > 1)
      {
        if (i == 0)
        {
          propertyType = type.GetProperty(keyPart).PropertyType;
        }
        else
        {
          propertyType = propertyType.GetProperty(keyPart).PropertyType;
        }
      }
    }

    MethodCallExpression orderByExpression = Expression.Call(
      typeof(Queryable),
      orderMethodName,
      new Type[] { type, propertyType },
      query.Expression,
      CreateExpression(type, key)
    );

    return query.Provider.CreateQuery<T>(orderByExpression);
  }
  catch (Exception e)
  {
    return query;
  }
}

CreateExpression我的解决方案中使用的方法在这篇文章中定义。

扩展方法的用法OrderBy如下。

IQueryable<Foo> q = [Your database context].Foos.AsQueryable();
IQueryable<Foo> p = null;

p = q.OrderBy("myBar.name");  // Ascending sort
// Or
p = q.OrderBy("myBar.name", false);  // Descending sort
// Materialize
var result = p.ToList();

类型Foo及其属性也取自与 method 相同的帖子CreateExpression

希望这篇文章对您有所帮助。

于 2018-01-10T10:36:38.230 回答
0

如果您不需要表达式,如何:

products = products.Orderby(p1 => p1.Code).ThenBy(p2 => p2.Category.Description)
于 2012-07-13T17:01:56.170 回答
0

嗨,您还可以创建一个扩展方法,例如它可以排序到任何深度,而不仅仅是子级

        public static IEnumerable<TSource> CustomOrderBy<TSource, TKey>(this IEnumerable<TSource> source, Func<TSource, TKey> keySelector)
    {
        List<string> list=new List<string>();
        List<TSource> returnList=new List<TSource>();
        List<int> indexList = new List<int>();

        if (source == null)
            return null;
        if (source.Count() <= 0)
            return source;
        source.ToList().ForEach(sc=>list.Add(keySelector(sc).ToString())); //Extract the strings of property to be ordered

        list.Sort(); //sort the list of strings

        foreach (string l in list) // extract the list of indexes of source according to the order
        {
            int i=0;
            //list.ForEach(l =>

                foreach (var s in source.ToList())
                {
                    if (keySelector(s).ToString() == l)
                        break;
                    i++;
                }
                indexList.Add(i);
        }
        indexList.ForEach(i=>returnList.Add(source.ElementAt(i))); //rearrange the source according to the above extracted indexes
        return returnList;
    }
}
public class Name
{
    public string FName { get; set; }
    public string LName { get; set; }
}
public class Category
{
    public Name Name { get; set; }
}
public class SortChild
{
    public void SortOn()
    {
        List<Category> category = new List<Category>{new Category(){Name=new Name(){FName="sahil",LName="chauhan"}},
            new Category(){Name=new Name(){FName="pankaj",LName="chauhan"}},
            new Category(){Name=new Name(){FName="harish",LName="thakur"}},
            new Category(){Name=new Name(){FName="deepak",LName="bakseth"}},
            new Category(){Name=new Name(){FName="manish",LName="dhamaka"}},
            new Category(){Name=new Name(){FName="arev",LName="raghaka"}}
        };
        var a = category.CustomOrderBy(s => s.Name.FName);

    }

}

它的自定义方法,现在它仅适用于字符串属性,但是它可以使用泛型进行反应以适用于任何原始类型。我希望这将有所帮助。

于 2012-07-13T18:09:52.357 回答