How does the library handle records with identical timestamps? #409
-
|
I'm studying this framework and have a question about how it handles this scenario, or if it's a known limitation. Scenario
Common Patterns for Handling This
WHERE UpdatedAt > @lastUpdatedAt
OR (UpdatedAt = @lastUpdatedAt AND Id > @lastId)
ORDER BY UpdatedAt ASC, Id ASC
WHERE [rowversion] > @lastRowVersion
ORDER BY [rowversion] ASCDoes Datasync Community Toolkit handle this scenario in any of these ways, or is it a known limitation? |
Beta Was this translation helpful? Give feedback.
Answered by
adrianhall
Dec 1, 2025
Replies: 1 comment
-
|
It's a known limitation. You need to give each record a slightly different UpdatedAt - doing them in groups of 10 per msec is possible. Unfortunately, using ANY database, we can't rely on functionality within a single database. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
wesleyteixeira
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It's a known limitation. You need to give each record a slightly different UpdatedAt - doing them in groups of 10 per msec is possible.
Unfortunately, using ANY database, we can't rely on functionality within a single database.