我得到了以下查询
IEnumerable<string> values = from first in goodOrdered join second in badOrdered on first.ToLower() equals second.ToLower() select second;
目前我的测试显示最终结果实际上是goodRrdered,就像我想要的那样.我可以期望永远是真的,或者我应该提供一个强制订单顺序的命令(它会使查询更复杂,因为goodOrdered可能看起来像1,9,2,7,6)?
解决方法
是的,它确实.根据
MSDN documentation:
Join preserves the order of the elements of outer,and for each of
these elements,the order of the matching elements of inner.
当然,如果没有在文档中指出,那将是完全不同的事情.您可能需要考虑的另一个问题是负责维护代码的开发人员,以及您是否希望他们知道/记住Join的合同包括保留外部序列的顺序……