gpt4 book ai didi

c# - 使用 OrderBy、ThenBy 排序

转载 作者:行者123 更新时间:2023-11-30 15:36:40 26 4
gpt4 key购买 nike

我正在尝试根据先前排好序的列对表格的多个列进行排序。它适用于前两列。但是,一旦我对第三列进行排序,第二列就会失去排序。据我所知,我的 foreach 循环一定有问题。这是我的排序代码:

public List<object> inhaltSortieren(List<object> zuSortierendeListe, Dictionary<string, SortierRichtung> sortierung)
{
IOrderedEnumerable<object> sortierteListe = null;
if (sortierung.First().Value == SortierRichtung.asc)
sortierteListe = zuSortierendeListe.OrderBy(x => x.GetType().GetProperty(sortierung.First().Key).GetValue(x, null));
else if (sortierung.First().Value == SortierRichtung.desc)
sortierteListe = zuSortierendeListe.OrderByDescending(x => x.GetType().GetProperty(sortierung.First().Key).GetValue(x, null));
bool first = true;
foreach (KeyValuePair<string, SortierRichtung> spalte in sortierung)
{
if (first)
{
first = false;
continue;
}
if (spalte.Value == SortierRichtung.asc)
sortierteListe = sortierteListe.ThenBy(x => x.GetType().GetProperty(spalte.Key).GetValue(x, null));
else if (spalte.Value == SortierRichtung.desc)
sortierteListe = sortierteListe.ThenByDescending(x => x.GetType().GetProperty(spalte.Key).GetValue(x, null));
}

return sortierteListe.ToList();
}

有什么想法吗?

更新:也许我添加一些进一步的信息:

  • @param zusortierendeListe:这是我要排序的列表,它是一个对象列表
  • @param sortierung:这是我要排序的方向,升序还是降序

对象本身是表数据列表

最佳答案

您正在传递一个 Dictionary ;从 Dictionary 中获取值的顺序当您将其用作 IEnumerable<KeyValuePair> 时(就像你的 foreach 循环一样)(可能)不是你添加它们的顺序!

您需要使用 List<KeyValuePair> (或其他一些已订购 IEnumerable<KeyValuePair> )而不是 Dictionary ,甚至创建一个自定义类来保存字段和方向并传递 List

关于c# - 使用 OrderBy、ThenBy 排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13527657/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com