我在一个有序数组上使用LINQ to Objects指令。 我不应该做哪些操作来确保数组的顺序没有改变?
当前回答
任何“group by”或“order by”都可能改变顺序。
其他回答
这里的问题特别指的是LINQ-to-Objects。
如果你使用LINQ-to-SQL而不是没有秩序,除非你强加一个像这样的东西:
mysqlresult.OrderBy(e=>e.SomeColumn)
如果不对LINQ-to-SQL执行此操作,则后续查询的结果顺序可能会不同,即使是相同的数据,这可能会导致间歇性错误。
我检查了System.Linq的方法。可枚举的,丢弃返回非ienumerable结果的任何结果。我检查了每一个的注释,以确定结果的顺序与源的顺序有什么不同。
绝对维护秩序。可以通过索引将源元素映射到结果元素
AsEnumerable 投 Concat 选择 ToArray ToList
保持秩序。元素被过滤或添加,但不重新排序。
截然不同的 除了 相交 减低 Prepend (.net 4.7.1新增功能) 跳过 SkipWhile 取 TakeWhile 在哪里 Zip (.net 4中的新功能)
破坏秩序——我们不知道结果的顺序。
ToDictionary ToLookup
显式重定义顺序-使用这些来改变结果的顺序
订购者 按降序排序 反向 然后通过 然后降序
根据某些规则重新定义Order。
GroupBy - The IGrouping objects are yielded in an order based on the order of the elements in source that produced the first key of each IGrouping. Elements in a grouping are yielded in the order they appear in source. GroupJoin - GroupJoin preserves the order of the elements of outer, and for each element of outer, the order of the matching elements from inner. Join - preserves the order of the elements of outer, and for each of these elements, the order of the matching elements of inner. SelectMany - for each element of source, selector is invoked and a sequence of values is returned. Union - When the object returned by this method is enumerated, Union enumerates first and second in that order and yields each element that has not already been yielded.
编辑:基于此实现,我已经将不同移动到保留顺序。
private static IEnumerable<TSource> DistinctIterator<TSource>
(IEnumerable<TSource> source, IEqualityComparer<TSource> comparer)
{
Set<TSource> set = new Set<TSource>(comparer);
foreach (TSource element in source)
if (set.Add(element)) yield return element;
}
任何“group by”或“order by”都可能改变顺序。
如果你正在处理一个数组,听起来像是你在使用LINQ-to-Objects,而不是SQL;你能否证实?大多数LINQ操作不会对任何东西重新排序(输出将与输入的顺序相同)-所以不要应用另一种排序(OrderBy[降序]/ThenBy[降序])。
[编辑:乔恩说得更清楚;LINQ通常创建一个新的序列,而不影响原始数据。
注意,将数据推入Dictionary<,> (ToDictionary)将打乱数据,因为Dictionary不尊重任何特定的排序顺序。
但大多数常见的事情(选择,在哪里,跳过,采取)应该是好的。
你是在谈论SQL,还是数组?换句话说,你使用的是LINQ To SQL还是LINQ To对象?
LINQ to Objects操作符实际上并不改变它们的原始数据源——它们构建的序列得到了数据源的有效支持。唯一改变顺序的操作是orderderby / orderbydescent /ThenBy/ thenbydescent——即使这样,这些操作对于相同顺序的元素也是稳定的。当然,许多操作将过滤掉一些元素,但返回的元素将是相同的顺序。
如果转换为不同的数据结构,例如使用ToLookup或ToDictionary,我不相信在这一点上顺序是被保留的——但无论如何,这有点不同。(不过我相信,映射到相同键的值的顺序在查找时是保留的。)