我想在一个partitionKey
等于一个值的天蓝色表上过滤值。
var query = new azure.TableQuery().stringFilter('PartitionKey', 'eq', Tenant);
tableSvc.queryEntities(
TABLE_VALUE,
query,
null,
async function (error, result, response) {
});
实际上我收到了这个错误
'(intermediate value).stringFilter is not a function'