简体   繁体   中英

Doctrine MongoDB use without ODM

I am using Doctrine MongoDB within Symfony2, but now I want to do some things which for me are easier without the ODM, how can I get the MongoClient or MongoCollection object?

I want to use MongoDB in the old-fashioned way like: http://php.net/manual/en/mongocollection.find.php

You can get the MongoClient from the DocumentManager using

$mongoClient = $dm->getConnection()->getMongo();

Similarly, you can get a MongoCollection instance for document class className using

$mongoCollection = $dm->getDocumentCollection('className')->getMongoCollection();

or more simply

$mongoCollection = $dm->getConnection()->getMongo()
    ->selectCollection('collectionName');

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM