-
-
Notifications
You must be signed in to change notification settings - Fork 803
[GreenDonut] Properly support ToBatchPageAsync with valueSelector #9324
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
7a5f8aa
Properly support ToBatchPageAsync with valueSelector
tobias-tengler a3064e0
wip
tobias-tengler 5186007
Add valueSelector null guard, backward pagination test, and migration…
michaelstaib c1925bf
Add additional guard
michaelstaib 417b1d0
edits
michaelstaib 1675f3c
Merge branch 'main' into tte/fix-batch-page-with-value-selector
michaelstaib da8f82e
Merge branch 'main' into tte/fix-batch-page-with-value-selector
michaelstaib d886e1c
Update snapshots
michaelstaib File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
src/GreenDonut/src/GreenDonut.Data.Primitives/EdgeEntry.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,53 @@ | ||
| namespace GreenDonut.Data; | ||
|
|
||
| /// <summary> | ||
| /// Bundles a node with the positional metadata needed for cursor generation. | ||
| /// </summary> | ||
| /// <typeparam name="T"> | ||
| /// The type of the node. | ||
| /// </typeparam> | ||
| public readonly struct EdgeEntry<T> | ||
| { | ||
| /// <summary> | ||
| /// Initializes a new instance of the <see cref="EdgeEntry{T}"/> struct. | ||
| /// </summary> | ||
| /// <param name="node"> | ||
| /// The node (item from the page). | ||
| /// </param> | ||
| /// <param name="offset"> | ||
| /// The offset relative to the current cursor position. | ||
| /// </param> | ||
| /// <param name="pageIndex"> | ||
| /// The page index. | ||
| /// </param> | ||
| /// <param name="totalCount"> | ||
| /// The total count of items in the dataset. | ||
| /// </param> | ||
| public EdgeEntry(T node, int offset, int pageIndex, int totalCount) | ||
| { | ||
| Node = node; | ||
| Offset = offset; | ||
| PageIndex = pageIndex; | ||
| TotalCount = totalCount; | ||
| } | ||
|
|
||
| /// <summary> | ||
| /// Gets the node (the item from the page). | ||
| /// </summary> | ||
| public T Node { get; } | ||
|
|
||
| /// <summary> | ||
| /// Gets the offset relative to the current cursor position. | ||
| /// </summary> | ||
| public int Offset { get; } | ||
|
|
||
| /// <summary> | ||
| /// Gets the page index. | ||
| /// </summary> | ||
| public int PageIndex { get; } | ||
|
|
||
| /// <summary> | ||
| /// Gets the total count of items in the dataset. | ||
| /// </summary> | ||
| public int TotalCount { get; } | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.