How does OData break through the limits of Pagesize?

[EnableQuery(PageSize = 200)]
public IQueryable<mo> Get(){
    ....
}

the number of pages is limited on the controller, is there any way to add a parameter to the url to achieve the effect of no paging?

or other writing to achieve the default paging, url plus specific parameters to make the paging disappear.

the method of writing another Controller does not count.

Mar.14,2021

there is no such method. Controller shall prevail.

Menu