标签: mongodb morphia
是否有可能在Morphia使用$ where条件?我没有在文档中看到它。这是我正在尝试做的事情:
db.products.find({$where: 'this.items.length > 0'}, {product_id:1})
'items'是一个集合,我想要返回所有具有大于零的项目集合的产品。
答案 0 :(得分:2)
您可以使用Query.where()。
Query.where()