[Queryable(PageSize = 10)] will only limit the data sent to the client but not the data loaded from database.
This can cause performance issue that SQL server will try to load the whole table to the query.
The correct way is to take PageSize + 1 data from database in order to check if next page is available.
Comments: Verified
This can cause performance issue that SQL server will try to load the whole table to the query.
The correct way is to take PageSize + 1 data from database in order to check if next page is available.
Comments: Verified