我刚刚升级到Sails.js 1.0,我的装饰模式停止了工作。
这就是我所拥有的:
let model = Model.find()
model
.where({
'nested.property': {
'>': 1
}
})
model.exec()
给我:
无法使用提供的
where
子句。无法过滤nested.property
:nested.property
不是。的有效名称 水线中的属性。即使这个模型(model
)声明schema: false
,这是不允许的。
我的数据库是MongoDB。