Scenario: I have a migrated Azure mobile service, with data tables, that I would like to upgrade to an Azure app service. I have followed this upgrade documentation. I have copied the connection string and the application name as described in the documentation.
Expectations: What I would like to see are the same data tables from my mobile service in my new app service's Easy Tables. I would also like these to map to the same tables in the same database.
Problem: The problem is however that I don't see the data tables from my mobile service in my new app service (in Easy Tables).
More info: I have also tried to recreate the tables in the new app service. But if I create a new table in easy tables it creates a new table in the database, probably because the created table name does not match the schema from my mobile service? My mobile service uses the following schema: [database name].[mobileservice name].[table name]
. The app service uses this schema: [database name].[table name]
.
So my question is: does anybody know how to migrate the data tables from a migrated mobile service to an app service?