You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-5Lines changed: 10 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# GoatQuery
2
2
3
-
A .NET library for parsing OData-style query parameters into LINQ expressions. Enables database-level filtering, sorting, and pagination from HTTP query strings.
3
+
A .NET library for parsing query parameters into LINQ expressions. Enables database-level filtering, sorting, and pagination from HTTP query strings.
4
4
5
5
## Installation
6
6
@@ -27,19 +27,21 @@ public IActionResult GetUsers() => Ok(dbContext.Users);
27
27
28
28
```
29
29
GET /api/users?$filter=age gt 18 and isActive eq true
30
-
GET /api/users?$orderby=lastName asc, firstName desc
30
+
GET /api/users?$orderby=lastName asc, firstName desc
0 commit comments