Skip to content

Commit 3a8e491

Browse files
committed
Update caveats.md
1 parent 828af4c commit 3a8e491

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/caveats.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This is why having a nullable column as part of the keyset _is not supported_ in
1010

1111
There are two solutions for this:
1212
1. Computed column: Reliable, performant, a bit harder to implement
13-
2. Coalescing in keyset: Extremely easy to implement, but might suffer in terms of performance
13+
2. Keyset coalescing: Extremely easy to implement, but might suffer in terms of performance
1414

1515
#### Solution #1 - Computed column
1616

@@ -76,7 +76,7 @@ _dbContext.Users.KeysetPaginateQuery(
7676

7777
Check this [sample page](../samples/Basic/Pages/Computed.cshtml) for a working example you can run and play with.
7878

79-
#### Solution #2 - Coalescing in keyset
79+
#### Solution #2 - Keyset coalescing
8080

8181
This is an extremely easy solution to the NULL problem. Let's assume again we have the following keyset: `Created` + `Id`, where `Created` is nullable.
8282

0 commit comments

Comments
 (0)