Skip to content

Commit 74773f3

Browse files
Ihar YakimushIhar Yakimush
authored andcommitted
update readme
1 parent 9b5e007 commit 74773f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ To get result you can
4545

4646
### Top, Skip
4747
### OrderBy, OrderByDescending, ThenBy, ThenByDescending
48-
Order by field
48+
- Order by field
4949
```
5050
Product[] result = solrLinq.OrderBy(p => p.Price).ThenBy(p => p.Id).ToArray();
5151
```
52-
Order by functions (not all of SOLR functions currently supported)
52+
- Order by functions (not all of SOLR functions currently supported)
5353
```
5454
Product[] result = solrLinq.OrderBy(p => Math.Pow(p.Price,3) + 1).ToArray();
5555
```

0 commit comments

Comments
 (0)