when I send data and query a table with a database like: dev datastorage (emulator), it works.
When I publish a data table with data in an Azure database (there is an account), it works. When I get data from a table with data in an Azure database (there is an account), it does not work.
In both cases, the code is the same. In addition to keys and credentials.
Should I do anything to request?
var query = azure.TableQuery .select().from('dummytable').where('PartitionKey eq ?', key);
Can anyone suggest why Query is not working. should there be anything else to do
From Storage Explorer it works, I can see objects. Only from the program I can not get an answer. But "PUT" works in the same program.
source share