You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While testing the pagination using the below classes I encountered the following problem. When I make a request with the following parameters:
Sorts=address
Page=1
PageSize=3
And then change the page to 2, I can see that one object with the same id and values from the first page is in the page 2.
When I looked into the DB with Mongo Compass I saw that the only difference between my entries is that I have some entries that have the Active field false or true and the id.
I suspect that CanSort() cannot sort correctly and creates duplicates when there are fields with the same values.
I was able to solve this issue by adding a custom sort as below
It's kind of weird to have same values for multiple objects but issues might happen in the DB. If somebody knows how to bypass this issue while using the CanSort() please let me know.
Any suggestion is welcomed and thank you for your time.
As I understand Active field should be added to sorts in the first place by default. I think this is not a bug that sieve should handle, rather it is a bussiness logic concern.
While testing the pagination using the below classes I encountered the following problem. When I make a request with the following parameters:
And then change the page to 2, I can see that one object with the same id and values from the first page is in the page 2.
When I looked into the DB with Mongo Compass I saw that the only difference between my entries is that I have some entries that have the Active field false or true and the id.
I suspect that
CanSort()
cannot sort correctly and creates duplicates when there are fields with the same values.I was able to solve this issue by adding a custom sort as below
It's kind of weird to have same values for multiple objects but issues might happen in the DB. If somebody knows how to bypass this issue while using the CanSort() please let me know.
Any suggestion is welcomed and thank you for your time.
Here is the Customer class
Here is the SieveProcessor
The text was updated successfully, but these errors were encountered: