Sort Query Results
-
When making a query, the server will return the results sorted only if explicitly requested by the query.
If no sorting method is specified when issuing the query, results will not be sorted.- Note: An exception to the above rule is when Boosting is involved in the query.
Learn more in Automatic score-based ordering.
- Note: An exception to the above rule is when Boosting is involved in the query.
-
Sorting is applied by the server after the query filtering stage. Filtering is recommended, as it reduces the number of results RavenDB needs to sort when querying a large dataset.
-
Multiple sorting operations can be chained.
-
All sorting capabilities available for dynamic queries can also be used when querying a static-index.
The same syntax used with dynamic queries also applies when querying indexes. -
In this article:
Order by field value
Order by field value - dynamic query
Use OrderBy or OrderByDescending to order the results by the specified document-field.
- Query
- Query_async
- DocumentQuery
- RQL
List<Product> products = session
// Make a dynamic query on the Products collection
.Query<Product>()
// Apply filtering (optional)
.Where(x => x.UnitsInStock > 10)
// Call 'OrderBy', pass the document-field by which to order the results
.OrderBy(x => x.UnitsInStock)
.ToList();
// Results will be sorted by the 'UnitsInStock' value in ascending order,
// with smaller values listed first.
List<Product> products = await asyncSession
// Make a dynamic query on the Products collection
.Query<Product>()
// Apply filtering (optional)
.Where(x => x.UnitsInStock > 10)
// Call 'OrderBy', pass the document-field by which to order the results
.OrderBy(x => x.UnitsInStock)
.ToListAsync();
// Results will be sorted by the 'UnitsInStock' value in ascending order,
// with smaller values listed first.
List<Product> products = session.Advanced
// Make a DocumentQuery on the Products collection
.DocumentQuery<Product>()
// Apply filtering (optional)
.WhereGreaterThan(x => x.UnitsInStock, 10)
// Call 'OrderBy', pass the document-field by which to order the results
.OrderBy(x => x.UnitsInStock)
.ToList();
// Results will be sorted by the 'UnitsInStock' value in ascending order,
// with smaller values listed first.
from "Products"
where UnitsInStock > 10
order by UnitsInStock as long
Order by field value - querying a static-index
Use OrderBy or OrderByDescending to order the results by the specified index-field.
- Query
- Query_async
- DocumentQuery
- Index
- RQL
List<Product> products = session
// Query the index
.Query<Products_ByUnitsInStock.IndexEntry, Products_ByUnitsInStock>()
// Apply filtering (optional)
.Where(x => x.UnitsInStock > 10)
// Call 'OrderByDescending', pass the index-field by which to order the results
.OrderByDescending(x => x.UnitsInStock)
.OfType<Product>()
.ToList();
// Results will be sorted by the 'UnitsInStock' value in descending order,
// with higher values listed first.
List<Product> products = await asyncSession
// Query the index
.Query<Products_ByUnitsInStock.IndexEntry, Products_ByUnitsInStock>()
// Apply filtering (optional)
.Where(x => x.UnitsInStock > 10)
// Call 'OrderByDescending', pass the index-field by which to order the results
.OrderByDescending(x => x.UnitsInStock)
.OfType<Product>()
.ToListAsync();
// Results will be sorted by the 'UnitsInStock' value in descending order,
// with higher values listed first.
List<Product> products = session.Advanced
// Query the index
.DocumentQuery<Products_ByUnitsInStock.IndexEntry, Products_ByUnitsInStock>()
// Apply filtering (optional)
.WhereGreaterThan(x => x.UnitsInStock, 10)
// Call 'OrderByDescending', pass the index-field by which to order the results
.OrderByDescending(x => x.UnitsInStock)
.OfType<Product>()
.ToList();
// Results will be sorted by the 'UnitsInStock' value in descending order,
// with higher values listed first.
public class Products_ByUnitsInStock : AbstractIndexCreationTask<Product>
{
public class IndexEntry
{
public int UnitsInStock { get; set; }
}
public Products_ByUnitsInStock()
{
Map = products => from product in products
select new IndexEntry()
{
UnitsInStock = product.UnitsInStock
};
}
}
from index "Products/ByUnitsInStock"
where UnitsInStock > 10
order by UnitsInStock as long desc
Ordering Type
-
By default, the
OrderBymethods will determine theOrderingTypefrom the property path expression
and specify that ordering type in the generated RQL that is sent to the server. -
E.g. in the above example, ordering by
x => x.UnitsInStockwill result inOrderingType.Long
because that property data type is an integer. -
Different ordering can be forced - see Force ordering type below.
Order by searchable fields
Order by searchable field - dynamic query
When making a full-text search with a dynamic query,
RavenDB automatically creates an auto-index that contains two index-fields for the queried field:
- one for the tokenized terms (used for searching),
- and one for the original value (used for ordering and other operations).
For example, consider the following dynamic query:
- Query
- Query_async
- DocumentQuery
- RQL
List<Product> products = session
.Query<Product>()
// Call 'Search':
// Search for productes with a name that contains 'sauce'
.Search(x => x.Name, "sauce")
// Call 'OrderBy':
// Order the results by the original value of field 'Name'.
.OrderBy(x => x.Name)
.ToList();
List<Product> products = await asyncSession
.Query<Product>()
// Call 'Search':
// Search for products with a name that contains 'sauce'.
.Search(x => x.Name, "sauce")
// Call 'OrderBy':
// Order the results by the original value of field 'Name'.
.OrderBy(x => x.Name)
.ToListAsync();
List<Product> products = session.Advanced
.DocumentQuery<Product>()
// Call 'Search':
// Search for products with a name that contains 'sauce'.
.Search("Name", "sauce")
// Call 'OrderBy':
// Order the results by the original value of field 'Name'.
.OrderBy("Name")
.ToList();
from Products
where search(Name, "sauce")
order by Name
For this query, RavenDB creates the Auto/Products/BySearch(Name) auto-index,
which contains the following two index-fields:
-
search(Name)
Used for the full-text search.
The field content is tokenized at indexing time according to the analyzer in use,
and thesearch()clause in the query is matched against these tokenized terms. -
Name
Used for ordering the results.
This field stores the original field value (non-tokenized),
so theorder byclause sorts results by the original text rather than by individual terms.
Note*:
This behavior is different from querying a static-index, where you must explicitly define an additional non-searchable index-field if you want to sort by the original value.
See the following static-index example.
Order by searchable field - querying a static-index
-
When configuring an index-field for full-text search, the content of the index-field is broken down into terms at indexing time. The specific tokenization depends on the analyzer used.
-
When querying such an index, if you order by that searchable index-field, results will come back sorted based on the indexed terms, not based on the original text value of the field.
-
To overcome this and order results by the original text value,
you can define another index-field with the same content, leave it non-searchable, and order by that field.
- Index
- Query
- Query_async
- DocumentQuery
- RQL
public class Products_BySearchName : AbstractIndexCreationTask<Product>
{
public class IndexEntry
{
// Index-field 'Name' will be configured below for full-text search
public string Name { get; set; }
// Index-field 'NameForSorting' will be used for ordering query results
public string NameForSorting { get; set; }
}
public Products_BySearchName()
{
Map = products => from product in products
select new
{
// Both index-fields are assigned the same content (the 'Name' from the document)
Name = product.Name,
NameForSorting = product.Name
};
// Configure only the 'Name' index-field for FTS
Indexes.Add(x => x.Name, FieldIndexing.Search);
}
}
List<Product> products = session
// Query the index
.Query<Products_BySearchName.IndexEntry, Products_BySearchName>()
// Call 'Search':
// Pass the index-field that was configured for FTS and the term to search for.
// Here we search for terms that start with "ch" within index-field 'Name'.
.Search(x => x.Name, "ch*")
// Call 'OrderBy':
// Pass the other index-field by which to order the results.
.OrderBy(x => x.NameForSorting)
.OfType<Product>()
.ToList();
// Running the above query on the NorthWind sample data, ordering by 'NameForSorting' field,
// we get the following order:
// =========================================================================================
// "Chai"
// "Chang"
// "Chartreuse verte"
// "Chef Anton's Cajun Seasoning"
// "Chef Anton's Gumbo Mix"
// "Chocolade"
// "Jack's New England Clam Chowder"
// "Pâté chinois"
// "Teatime Chocolate Biscuits"
// While ordering by the searchable 'Name' field would have produced the following order:
// ======================================================================================
// "Chai"
// "Chang"
// "Chartreuse verte"
// "Chef Anton's Cajun Seasoning"
// "Pâté chinois"
// "Chocolade"
// "Teatime Chocolate Biscuits"
// "Chef Anton's Gumbo Mix"
// "Jack's New England Clam Chowder"
List<Product> products = await asyncSession
// Query the index
.Query<Products_BySearchName.IndexEntry, Products_BySearchName>()
// Call 'Search':
// Pass the index-field that was configured for FTS and the term to search for.
// Here we search for terms that start with "ch" within index-field 'Name'.
.Search(x => x.Name, "ch*")
// Call 'OrderBy':
// Pass the other index-field by which to order the results.
.OrderBy(x => x.NameForSorting)
.OfType<Product>()
.ToListAsync();
List<Product> products = session.Advanced
// Query the index
.DocumentQuery<Products_BySearchName.IndexEntry, Products_BySearchName>()
// Call 'Search':
// Pass the index-field that was configured for FTS and the term to search for.
// Here we search for terms that start with "ch" within index-field 'Name'.
.Search("Name", "ch*")
// Call 'OrderBy':
// Pass the other index-field by which to order the results.
.OrderBy("NameForSorting")
.OfType<Product>()
.ToList();
from index "Products/BySearchName"
where search(Name, "ch*")
order by NameForSorting
Order by score
-
When querying with some filtering conditions, a basic score is calculated for each item in the results
by the underlying indexing engine. -
The higher the score value the better the match.
-
Use
OrderByScoreorOrderByScoreDescendingto order by this score.
- Query
- Query_async
- DocumentQuery
- RQL
List<Product> products = session
.Query<Product>()
// Apply filtering
.Where(x => x.UnitsInStock < 5 || x.Discontinued)
// Call 'OrderByScore'
.OrderByScore()
.ToList();
// Results will be sorted by the score value
// with best matching documents (higher score values) listed first.
List<Product> products = await asyncSession
.Query<Product>()
// Apply filtering
.Where(x => x.UnitsInStock < 5 || x.Discontinued)
// Call 'OrderByScore'
.OrderByScore()
.ToListAsync();
// Results will be sorted by the score value
// with best matching documents (higher score values) listed first.
List<Product> products = session.Advanced
.DocumentQuery<Product>()
// Apply filtering
.WhereLessThan(x => x.UnitsInStock, 5)
.OrElse()
.WhereEquals(x => x.Discontinued, true)
// Call 'OrderByScore'
.OrderByScore()
.ToList();
// Results will be sorted by the score value
// with best matching documents (higher score values) listed first.
from "Products"
where UnitsInStock < 5 or Discontinued == true
order by score()
Get resulting score:
The score details can be retrieved by either:
-
Request to include explanations:
You can get the score details and see how it was calculated by requesting to include explanations in the query. Currently, this is only available when using Lucene as the underlying indexing engine.
Learn more in Include query explanations. -
Get score from metadata:
-
The score is available in the
@index-scoremetadata property within each result.
Note the following difference between the underlying indexing engines:-
When using Lucene:
This metadata property is always available in the results.
Read more about Lucene scoring here. -
When using Corax:
In order to enhance performance, this metadata property is Not included in the results by default.
To get this metadata property you must set the Indexing.Corax.IncludeDocumentScore configuration value to true.
Learn about the available methods for setting an indexing configuration key in this indexing-configuration article.
-
-
The following example shows how to get the score from the metadata of the resulting entities that were loaded to the session:
-
// Make a query:
// =============
List<Employee> employees = session
.Query<Employee>()
.Search(x => x.Notes, "English")
.Search(x => x.Notes, "Italian", boost: 10)
.ToList();
// Get the score:
// ==============
// Call 'GetMetadataFor', pass an entity from the resulting employees list
var metadata = session.Advanced.GetMetadataFor(employees[0]);
// Score is available in the '@index-score' metadata property
var score = metadata[Constants.Documents.Metadata.IndexScore];
Order by random
-
Use
RandomOrderingto randomize the order of the query results. -
An optional seed parameter can be passed.
- Query
- Query_async
- DocumentQuery
- RQL
List<Product> products = session
.Query<Product>()
.Where(x => x.UnitsInStock > 10)
// Call 'Customize' with 'RandomOrdering'
.Customize(x => x.RandomOrdering())
// An optional seed can be passed, e.g.:
// .Customize(x => x.RandomOrdering('someSeed'))
.ToList();
// Results will be randomly ordered.
List<Product> products = await asyncSession
.Query<Product>()
.Where(x => x.UnitsInStock > 10)
// Call 'Customize' with 'RandomOrdering'
.Customize(x => x.RandomOrdering())
// An optional seed can be passed, e.g.:
// .Customize(x => x.RandomOrdering('someSeed'))
.ToListAsync();
// Results will be randomly ordered.
List<Product> products = session.Advanced
.DocumentQuery<Product>()
.WhereGreaterThan(x => x.UnitsInStock, 10)
// Call 'RandomOrdering'
.RandomOrdering()
// An optional seed can be passed, e.g.:
// .RandomOrdering('someSeed')
.ToList();
// Results will be randomly ordered.
from "Products"
where UnitsInStock > 10
order by random()
// order by random(someSeed)
Order by spatial
-
If your data contains geographical locations,
spatial query results can be sorted based on their distance from a specific point. -
See detailed explanation in Spatial Sorting.
Order by count (aggregation query)
- The results of a group-by query can be sorted by the
Countaggregation operation used in the query.
- Query
- Query_async
- DocumentQuery
- RQL
var numberOfProductsPerCategory = session
.Query<Product>()
// Make an aggregation query
.GroupBy(x => x.Category)
.Select(x => new
{
// Group by Category
Category = x.Key,
// Count the number of product documents per category
Count = x.Count()
})
// Order by the Count value
.OrderBy(x => x.Count)
.ToList();
// Results will contain the number of Product documents per category
// ordered by that count in ascending order.
var numberOfProductsPerCategory = await asyncSession
.Query<Product>()
// Make an aggregation query
.GroupBy(x => x.Category)
.Select(x => new
{
// Group by Category
Category = x.Key,
// Count the number of product documents per category
Count = x.Count()
})
// Order by the Count value
.OrderBy(x => x.Count)
.ToListAsync();
// Results will contain the number of Product documents per category
// ordered by that count in ascending order.
var numberOfProductsPerCategory = session.Advanced
.DocumentQuery<Product>()
// Group by Category
.GroupBy("Category")
.SelectKey("Category")
// Count the number of product documents per category
.SelectCount()
// Order by the Count value
// Here you need to specify the ordering type explicitly
.OrderBy("Count", OrderingType.Long)
.ToList();
// Results will contain the number of Product documents per category
// ordered by that count in ascending order.
from "Products"
group by Category
order by count() as long
select key() as "Category", count()
Order by sum (aggregation query)
- The results of a group-by query can be sorted by the
Sumaggregation operation used in the query.
- Query
- Query_async
- DocumentQuery
- RQL
var numberOfUnitsInStockPerCategory = session
.Query<Product>()
// Make an aggregation query
.GroupBy(x => x.Category)
.Select(x => new
{
// Group by Category
Category = x.Key,
// Sum the number of units in stock per category
Sum = x.Sum(x => x.UnitsInStock)
})
// Order by the Sum value
.OrderBy(x => x.Sum)
.ToList();
// Results will contain the total number of units in stock per category
// ordered by that number in ascending order.
var numberOfUnitsInStockPerCategory = await asyncSession
.Query<Product>()
// Make an aggregation query
.GroupBy(x => x.Category)
.Select(x => new
{
// Group by Category
Category = x.Key,
// Sum the number of units in stock per category
Sum = x.Sum(x => x.UnitsInStock)
})
// Order by the Sum value
.OrderBy(x => x.Sum)
.ToListAsync();
// Results will contain the total number of units in stock per category
// ordered by that number in ascending order.
var numberOfUnitsInStockPerCategory = session.Advanced
.DocumentQuery<Product>()
// Group by Category
.GroupBy("Category")
.SelectKey("Category")
// Sum the number of units in stock per category
.SelectSum(new GroupByField
{
FieldName = "UnitsInStock",
ProjectedName = "Sum"
})
// Order by the Sum value
// Here you need to specify the ordering type explicitly
.OrderBy("Sum", OrderingType.Long)
.ToList();
// Results will contain the total number of units in stock per category
// ordered by that number in ascending order.
from "Products"
group by Category
order by Sum as long
select key() as 'Category', sum(UnitsInStock) as Sum
Force ordering type
-
By default, the
OrderBymethods will determine theOrderingTypefrom the property path expression
and specify that ordering type in the generated RQL that is sent to the server. -
A different ordering can be forced by passing the ordering type explicitly to
OrderByorOrderByDescending. -
The following ordering types are available:
OrderingType.LongOrderingType.DoubleOrderingType.AlphaNumericOrderingType.String(lexicographic ordering)
-
When using RQL directly, if no ordering type is specified, then the server defaults to lexicographic ordering.
Using alphanumeric ordering example:
-
When ordering mixed-character strings by the default lexicographical ordering
then comparison is done character by character based on the Unicode values.
For example, "Abc9" will come after "Abc10" since 9 is greater than 1. -
If you want the digit characters to be ordered as numbers then use alphanumeric ordering
where "Abc10" will result after "Abc9".
- Query
- Query_async
- DocumentQuery
- RQL
List<Product> products = session
.Query<Product>()
// Call 'OrderBy', order by field 'QuantityPerUnit'
// Pass a second param, requesting to order the text alphanumerically
.OrderBy(x => x.QuantityPerUnit, OrderingType.AlphaNumeric)
.ToList();
List<Product> products = await asyncSession
.Query<Product>()
// Call 'OrderBy', order by field 'QuantityPerUnit'
// Pass a second param, requesting to order the text alphanumerically
.OrderBy(x => x.QuantityPerUnit, OrderingType.AlphaNumeric)
.ToListAsync();
List<Product> products = session.Advanced
.DocumentQuery<Product>()
// Call 'OrderBy', order by field 'QuantityPerUnit'
// Pass a second param, requesting to order the text alphanumerically
.OrderBy(x => x.QuantityPerUnit, OrderingType.AlphaNumeric)
.ToList();
from "Products"
order by QuantityPerUnit as alphanumeric
// Running the above query on the NorthWind sample data,
// would produce the following order for the QuantityPerUnit field:
// ================================================================
// "1 kg pkg."
// "1k pkg."
// "2 kg box."
// "4 - 450 g glasses"
// "5 kg pkg."
// ...
// While running with the default Lexicographical ordering would have produced:
// ============================================================================
// "1 kg pkg."
// "10 - 200 g glasses"
// "10 - 4 oz boxes"
// "10 - 500 g pkgs."
// "10 - 500 g pkgs."
// ...
Chain ordering
-
It is possible to chain multiple orderings in the query.
Any combination of secondary sorting is possible as the fields are indexed independently of one another. -
This is achieved by using the
ThenBy(ThenByDescending) andThenByScore(ThenByScoreDescending) methods. -
When using the Lucene search engine -
there is no limit on the number of sorting actions that can be chained in a query.When using the Corax search engine -
a maximum of16order by clauses is allowed per query. If this limit is exceeded, an exception will be thrown.
To resolve this, simplify your query or switch to the Lucene engine. See Selecting the search engine.
- Query
- Query_async
- DocumentQuery
- RQL
List<Product> products = session
.Query<Product>()
.Where(x => x.UnitsInStock > 10)
// Apply the primary sort by 'UnitsInStock'
.OrderByDescending(x => x.UnitsInStock)
// Apply a secondary sort by the score (for products with the same # of units in stock)
.ThenByScore()
// Apply another sort by 'Name' (for products with same # of units in stock and same score)
.ThenBy(x => x.Name)
.ToList();
// Results will be sorted by the 'UnitsInStock' value (descending),
// then by score,
// and then by 'Name' (ascending).
List<Product> products = await asyncSession
.Query<Product>()
.Where(x => x.UnitsInStock > 10)
// Apply the primary sort by 'UnitsInStock'
.OrderByDescending(x => x.UnitsInStock)
// Apply a secondary sort by the score (for products with the same # of units in stock)
.ThenByScore()
// Apply another sort by 'Name' (for products with same # of units in stock and same score)
.ThenBy(x => x.Name)
.ToListAsync();
// Results will be sorted by the 'UnitsInStock' value (descending),
// then by score,
// and then by 'Name' (ascending).
List<Product> products = session.Advanced
.DocumentQuery<Product>()
.WhereGreaterThan(x => x.UnitsInStock, 10)
// Apply the primary sort by 'UnitsInStock'
.OrderByDescending(x => x.UnitsInStock)
// Apply a secondary sort by the score
.OrderByScore()
// Apply another sort by 'Name'
.OrderBy(x => x.Name)
.ToList();
// Results will be sorted by the 'UnitsInStock' value (descending),
// then by score,
// and then by 'Name' (ascending).
from "Products"
where UnitsInStock > 10
order by UnitsInStock as long desc, score(), Name
Custom sorters
-
The Lucene indexing engine allows you to define custom sorters,
so you can apply your own logic when ordering query results.
Custom sorters are not supported by Corax. -
Custom sorters can be deployed at either the database level or the server-wide level:
-
Database-level
Custom sorters can be used only by queries made on that database.
Learn how to deploy a database-level custom sorter in: Database-level custom sorters. -
Server-wide
Custom sorters can be used by queries made on any database in your cluster.
Learn how to deploy a server-wide custom sorter in: Server-wide custom sorters.
-
-
Once deployed, a custom sorter can be specified in a query to sort the results.
- Query
- Query_async
- DocumentQuery
- RQL
List<Product> products = session
.Query<Product>()
.Where(x => x.UnitsInStock > 10)
// Order by field 'UnitsInStock', pass the name of your custom sorter class
.OrderBy(x => x.UnitsInStock, "MyCustomSorter")
.ToList();
// Results will be sorted by the 'UnitsInStock' value
// according to the logic from 'MyCustomSorter' class
List<Product> products = await asyncSession
.Query<Product>()
.Where(x => x.UnitsInStock > 10)
// Order by field 'UnitsInStock', pass the name of your custom sorter class
.OrderBy(x => x.UnitsInStock, "MyCustomSorter")
.ToListAsync();
// Results will be sorted by the 'UnitsInStock' value
// according to the logic from 'MyCustomSorter' class
List<Product> products = session.Advanced
.DocumentQuery<Product>()
.WhereGreaterThan(x => x.UnitsInStock, 10)
// Order by field 'UnitsInStock', pass the name of your custom sorter class
.OrderBy(x => x.UnitsInStock, "MyCustomSorter")
.ToList();
// Results will be sorted by the 'UnitsInStock' value
// according to the logic from 'MyCustomSorter' class
from "Products"
where UnitsInStock > 10
order by custom(UnitsInStock, "MyCustomSorter")
// Results will be sorted by the 'UnitsInStock' value
// according to the logic from 'MyCustomSorter' class
Syntax
// OrderBy overloads:
IOrderedQueryable<T> OrderBy<T>(string path, OrderingType ordering);
IOrderedQueryable<T> OrderBy<T>(Expression<Func<T, object>> path, OrderingType ordering);
IOrderedQueryable<T> OrderBy<T>(string path, string sorterName);
IOrderedQueryable<T> OrderBy<T>(Expression<Func<T, object>> path, string sorterName);
// OrderByDescending overloads:
IOrderedQueryable<T> OrderByDescending<T>(string path, OrderingType ordering);
IOrderedQueryable<T> OrderByDescending<T>(Expression<Func<T, object>> path, OrderingType ordering);
IOrderedQueryable<T> OrderByDescending<T>(string path, string sorterName);
IOrderedQueryable<T> OrderByDescending<T>(Expression<Func<T, object>> path, string sorterName);
| Parameter | Type | Description |
|---|---|---|
| path | string | The name of the field to sort by |
| path | Expression<Func<T, object>> | A lambda expression to the field by which to sort |
| ordering | OrderingType | The ordering type that will be used to sort the results:OrderingType.LongOrderingType.DoubleOrderingType.AlphaNumericOrderingType.String (default) |
| sorterName | string | The name of your custom sorter class |