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
in core, we have @pageItems to specify the the property that contains the array of page items. in azure core lib, we ahve @items to do the same thing. do we have plan to consolidate them?
The text was updated successfully, but these errors were encountered:
also there are discrepancies for indicating if the operation is pageable. in azure, we use @pagedResult, in unbranded, we use @list. also, unbranded will check if there is at least @pageItems, but azure does not do validation for @items.
tadelesh
changed the title
[azure-core] duplicate decorator with core for paging
[azure-core] discrepancies between azure and unbranded list
Dec 19, 2024
tadelesh
changed the title
[azure-core] discrepancies between azure and unbranded list
[azure-core] discrepancies between azure and unbranded pageable
Dec 19, 2024
I feel like we should also leverage the @list decorator in azure scope? using @pagedResult on a model to detect if it's a paging operation might be problematic if this model is being used in a non paging operation or being used as a property type of a non paging operation?
in core, we have
@pageItems
to specify the the property that contains the array of page items. in azure core lib, we ahve@items
to do the same thing. do we have plan to consolidate them?The text was updated successfully, but these errors were encountered: