Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我开始通过 Casbah 在 Scala 中使用 MongoDb,但在 Casbah 文档/谷歌上找不到删除集合内容的方法。MongoDd文档说执行此操作的 MongoDb shell 命令是
db.things.remove({});
但是我们怎样才能通过 Casbah 实现同样的目标呢?
提前致谢,
奥利维尔
Casbah 等效于 shell 的{}空文档操作符是 `MongoDBObject.empty
{}
这应该工作 -
db.things.remove(MongoDBObject.empty)