MikeCodesDotNET / App-Service-Helpers

Add data storage and authentication to your app in a few lines of code.
MIT License
79 stars 28 forks source link

Data not syncing with easytables #42

Closed crakhi closed 7 years ago

crakhi commented 7 years ago

Thanks for the great demo!

I just tried this.

  1. Created a "MobileApps QuickStart" Template in Azure and created a AppService.
  2. QuickStart -> Xamarin Forms -> It created the todotable
  3. EasyTables -> todoitem table is available.
  4. Downloaded this ASH project, changed the URL to my appService URL.
  5. Deployed to device.
  6. Its working fine on the device, I am able to add and edit items.

But the problem is whatever the data I added is not visible in the table under EasyTables. Is there any additional steps I need to follow? To enable sync?

crakhi commented 7 years ago

Found the reason. Its because the table name in the default easytable is "todoitem" and the model name in your sample is "todo". I created a todo table and all is well! Thanks!