Azure Mobile Service query doesn't return all the rows

后端 未结 3 475
感动是毒
感动是毒 2020-12-19 09:22

I have a table called NameTable in my Azure Mobile Service. When I make the below mentioned calls in my client app (WP8 app using the Mobile Services SDK):

         


        
3条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-19 09:57

    Because of the server sides behaviour I had to change my script in the easy tables like following: MSDN Forum

    Use the App Service Editor, edit the tableName.js file (in the tables directory, replacing tableName with your tablename), then set: table.maxTop = 1000 You can also set table.pageSize = 1000 to set the default page size.

    Setting table.pageSize = 1000; worked for me.

提交回复
热议问题