Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure Mobile Services: no data tab

I am trying to create a simple table in Azure Mobile Services so that my c# Windows Phone App can utilize a high score table. However, though it appears in every example I find online, there is no "Data" tab inside my mobile service I created on Azure where I can create that table. They removed it or something, but there is no documentation whatsoever. Anyone know what's going on?

Thanks.

like image 641
user3448699 Avatar asked Mar 22 '14 03:03

user3448699


1 Answers

You probably chose to use a .NET backend (as opposed to JavaScript). When you do so, the DATA and API tabs are not visible in the portal. This is because both your data access and custom API's are part of your Visual Studio solution and have to be deployed from there. If you want to use the Javascript backend where you create your tables, APIs, and edit their scripts in the portal, you'll need to create a new Mobile Service and choose Javascript as the backend.

like image 140
Chris Avatar answered Nov 06 '22 10:11

Chris