I am new to Azure App Service.
I\'ve created a view in Azure database to get data across several tables. Now I want to use the data from this view in my Cordova App
Things can be so easy sometimes ;-)
All I need to do is to write the following lines to my table controller:
var table = require('azure-mobile-apps').table(); table.databaseTableName = 'ViewName'; module.exports = table;
Thanks for your help!