首页 > 解决方案 > Azure 表按分区键值过滤

问题描述

我想在一个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'

标签: javascriptnode.jsazure-storageazure-table-storageazure-tablequery

解决方案


推荐阅读