标签: mongodb morphia
我的mongo查询如下
db.profiles.update( { _id: 1 }, { $pull: { votes: { $gte: 6 } } } )
在Morphia中这相当于什么?
我看到有removeAll方法,但这似乎没有以 condition 作为参数。