dcpartners
dcpartners

Reputation: 5446

Understanding Azure Easy Tables on Mobile App on non-sql database

Based on this blog - https://blog.xamarin.com/getting-started-azure-mobile-apps-easy-tables/ , the sample always used SQL as a database in conjuction with Easy Tables. We've tried to the Storage account instead of SQL database. Is this possible anyway?

Everytime we setup this, we always get "Easy Tables is not supported on your current App Service app. Please initialize your App Service app for Easy Tables support." It looks like it doesn't support Storage Account. Can someone verify this?

Upvotes: 0

Views: 1114

Answers (2)

dcpartners
dcpartners

Reputation: 5446

We lodged a case to Azure Support and we finally get the answer. So basically the Easy Table is only working in SQL Database only NOT storage account.

Upvotes: -1

Krumelur
Krumelur

Reputation: 33048

First, be aware that Easy Tables are not supported with a .NET backend. They only work when using the Node.JS backend (this means: the whole project has been created through the Azure portal and not via Visual Studio).

Easy Tables are by definition relational tables and are always backed by SQL Server. You can however combine them with another storage model by storing references inside an Easy Table (e.g. the name of an Azure Blob).

We have a blog post which goes into that direction: https://blog.xamarin.com/sync-files-between-devices-azure-file-sync/

Upvotes: 7

Related Questions