From 7e6cdb07278672ac2742ea4e1d31581300b34898 Mon Sep 17 00:00:00 2001 From: stephanmeissner <45164316+stephanmeissner@users.noreply.github.com> Date: Fri, 26 Jun 2020 11:45:49 +0200 Subject: [PATCH] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index ffa2a4f..3b80612 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,11 @@ The resulting JSON looks like this: } ``` +You can skip sorting and paging if necessary: +```csharp +return new Result(ps, data, sort: false, page: false); +``` + If you need to transform (`Select`) the sorted and paged data, you can use the `Result.Select` method. Like this: ```csharp