我正在尝试使用 XYZ 连接表 ABC ,并使用Strongloop计算ABC中的记录(在XYZ中过滤的排除记录)。
我的代码是:
ABC.count({where: {abcPropertyName: {neq: '0x0'}}, include: { relation: 'XYZ', scope: {where: {xyzPropertyName: 'someValue'}}}}).$promise.then(function (result) {
$rootScope.CountRes= result.count;
});
问题:'xyz'中的过滤器无效。它会计算ABC中的所有记录。