Imagine that we have the simplest map index:
Map = posts => from post in posts orderby post.DateTime select new { Id = post.Id, DateTime = post.DateTime }
How will an OrderBy condition affect Map index results? Does it determine the default order order if your request does not provide an order proposal explicitly? How are documents sorted if the proposal was not submitted either in the index or in the request?
source share