I have requirement to read data from Azure table storage and expose as rest API (JSON) but I do not to use additional services. Can I use Azure Functions to read data from Azure table storage?
Yes, this can be done. I am using node.js and the "azure-storage" module. You can set up a function as an HTTP trigger and then use the azure-storage module to connect to your database and do the normal reads and writes.