使用 Load 函数时,RavenDB 接收结果的默认顺序是什么?

What is RavenDB's default order of the results received when the Load function is used?

如果我执行以下查询:session.Load(1, 2, 3).ToList(); 我可以假设我列表中的文档也将是以与我的查询相同的顺序返回 (1, 2,3)?

是的,它会按照您给它的相同顺序返回。