Is it possible to fetch specific columns from an Azure storage table with the Javascript library.
Right now I can fetch the entire row, but I want just a few of the columns.
Here is what I'm doing to fetch the entire row from the table
var tableUri = "https://mytablerg.table.core.windows.net";
var tableService = AzureStorage.Table.createTableServiceWithSas(tableUri, sasToken);
var tableQuery = new AzureStorage.Table.TableQuery().top(100).where('PartitionKey eq ?', partitionName);
tableService.queryEntities('ChatMessages', tableQuery, null, function(error, result, response) {
// do some work with a returned data
});