I want to create a website and a windows 8 app that share the same database. I followed this tutorial to create the website https://www.windowsazure.com/en-us/develop/net/tutorials/web-site-with-sql-database/ and I used the Azure Management Portal to create my mobile service.
Though each of them work perfectly, I cannot get the tables I publish through the web application to show up in my mobile service. And when I connect in my JS app using
var mobileService = new Microsoft.WindowsAzure.MobileServices.MobileServiceClient(
"url",
"secret"
);
the tables don't exist.
How can I share these tables between the two services?