Windows Azure Mobile Service - Data Sync lessons learned

来源:互联网 发布:sqlserver 创建临时表 编辑:程序博客网 时间:2024/06/04 23:33


1. primary key on server table must be "id" (must be lower case) 

http://blogs.msdn.com/b/jpsanders/archive/2013/05/24/using-an-existing-azure-sql-table-with-windows-azure-mobile-services.aspx


2. localTable.PullAsync() only get max of 50 rows. To get more rows e.g. 1000, use localTable.PullAsync(localTable.Take(1000))

http://social.msdn.microsoft.com/Forums/windowsazure/en-US/a3994cce-8819-49e4-8104-095b9e17912a/offline-data-xamarinhow-to-get-more-than-50-records-on-a-pullasync?forum=azuremobile


0 0
原创粉丝点击