We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b5e007 commit 74773f3Copy full SHA for 74773f3
README.md
@@ -45,11 +45,11 @@ To get result you can
45
46
### Top, Skip
47
### OrderBy, OrderByDescending, ThenBy, ThenByDescending
48
- Order by field
+ - Order by field
49
```
50
Product[] result = solrLinq.OrderBy(p => p.Price).ThenBy(p => p.Id).ToArray();
51
52
- Order by functions (not all of SOLR functions currently supported)
+ - Order by functions (not all of SOLR functions currently supported)
53
54
Product[] result = solrLinq.OrderBy(p => Math.Pow(p.Price,3) + 1).ToArray();
55
0 commit comments