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 b88e4f2 commit 46597c1Copy full SHA for 46597c1
README.md
@@ -151,3 +151,13 @@ You can add a namespace to the URL by specifying it in `ConfigureServices`:
151
services.AddJsonApi<AppDbContext>(
152
opt => opt.Namespace = "api/v1");
153
```
154
+
155
+## Pagination
156
157
+If you would like pagination implemented by default, you can specify the page size
158
+when setting up the services:
159
160
+```
161
+ services.AddJsonApi<AppDbContext>(
162
+ opt => opt.DefaultPageSize = 10);
163
0 commit comments