LINQ中的条件“orderby”排序顺序

时间:2009-10-22 10:59:45

标签: c# .net linq

在LINQ中,是否可以使用条件orderby排序顺序(升序与降序)。

像这样的东西(不是有效的代码):

bool flag;

(from w in widgets
 where w.Name.Contains("xyz")
 orderby w.Id (flag ? ascending : descending)
 select w)

9 个答案:

答案 0 :(得分:28)

如果以增量方式构建表达式,则可以执行此操作。通常更容易使用表达式而不是理解表达式:

var x = widgets.Where(w => w.Name.Contains("xyz"));
if (flag) {
  x = x.OrderBy(w => w.property);
} else {
  x = x.OrderByDescending(w => w.property);
}

(假设Widget的property是排序的基础,因为你没有列出一个。)

答案 1 :(得分:17)

......或者在一个声明中全部完成

bool flag;

var result = from w in widgets where w.Name.Contains("xyz")
  orderby
    flag ? w.Id : 0,
    flag ? 0 : w.Id descending
  select w;

答案 2 :(得分:8)

您可以定义没有排序的基本查询,然后根据标志进行排序:

var query=(from w in widgets
  where w.Name.Contains("xyz")
  select w);

var result = flag ?
  query.OrderBy(w =>w) :
  query.OrderByDescending(w = w);

答案 3 :(得分:8)

您可以尝试以下内容:

var q = from i in list
         where i.Name = "name"
         select i;
if(foo)
     q = q.OrderBy(o=>o.Name);
else
     q = q.OrderByDescending(o=>o.Name);

答案 4 :(得分:5)

这是一个更通用的解决方案,可用于各种条件lambda表达式而不会破坏表达式的流程。

public static IEnumerable<T> IfThenElse<T>(
    this IEnumerable<T> elements,
    Func<bool> condition,
    Func<IEnumerable<T>, IEnumerable<T>> thenPath,
    Func<IEnumerable<T>, IEnumerable<T>> elsePath)
{
    return condition()
        ? thenPath(elements)
        : elsePath(elements);
}

e.g。

var result = widgets
    .Where(w => w.Name.Contains("xyz"))
    .IfThenElse(
        () => flag,
        e => e.OrderBy(w => w.Id),
        e => e.OrderByDescending(w => w.Id));

答案 5 :(得分:2)

如果排序属性Id是一个数字(或支持一元减号),也可以这样做:

bool ascending = ...

collection.Where(x => ...)
  .OrderBy(x => ascending ? x.Id : -x.Id)
  .Select(x => ...)

// LINQ query
from x in ...
orderby (ascending ? x.Id : -x.Id)
select ...

答案 6 :(得分:1)

MoreLINQ NuGet package还提供了扩展方法,使this更方便。 它还提供了许多更有用的扩展方法,因此在我的项目中是一个稳定的选择。

答案 7 :(得分:0)

你甚至可以做更复杂的订购,但仍然保持简短:

    var dict = new Dictionary<int, string>() { [1] = "z", [3] = "b", [2] = "c" };
    var condition =  true;
    var result = (condition ? dict.OrderBy(x => x.Key) : dict.OrderByDescending(x => x.Value))
        .Select(x => x.Value);

答案 8 :(得分:0)

 bool flag;

 from w in widgets
 where w.Name.Contains("xyz")
 orderby flag == true ? w.Id : w.Id descending
 select w

升序被强制