How to update embedded document in MongoDB with Doctrine ODM
问题 I'm unable to find how to update embedded documents with Doctrine Mongo ODM in Symfony2. I have a class called Page with many embedded documents "Comments" and I want to use createQueryBuilder to update specific comment. Here is a simple class that I have: class Page { protected $id; /** @MongoDB\EmbedMany */ private $pageComment = array(); } I searched the whole internet, but I don't see to find any info on how to update subdocuments of a document with Doctrine ODM query builder. I will be