Azure mobile apps CRUD operations on SQL table (node.js backend)
This is my first post here so please don't get mad if my formatting is a bit off ;-) I'm trying to develop a backend solution using Azure mobile apps and node.js for server side scripts. It is a steep curve as I am new to javaScript and node.js coming from the embedded world. What I have made is a custom API that can add users to a MSSQL table, which is working fine using the tables object. However, I also need to be able to delete users from the same table. My code for adding a user is: var userTable = req.azureMobile.tables('MyfUserInfo'); item.id = uuid.v4(); userTable.insert(item).then(