Sometimes, I'm just looking at data in the RavenDB studio, usually by index, and I wanted to know if there was a way to specify a sort option?
For example, if I have simple index like this:
from doc in docs.Pages
select new
{
Query = new[] { page.Text, page.Views },
page,
Views = page.Views
}
If I want to look at all pages that have stackoverflow
in the text ordered by the most views, how would I query that in the RavenDB Studio?