我有一个mongoDB集合,我想以编程方式截断它(删除此集合中的所有文档)。我这样做了:
$collection = $this
->container
->get('doctrine_mongodb')
->getRepository('AppBundle:User');
$document_manager = $this
->container
->get('doctrine_mongodb')
->getManager();
if($override){
$document_manager->remove($collection);
其中用户是集合的名称。但它不起作用。如何正确删除集合中的所有文档?