The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
35 views

How to create a form field which is referenced to another document using formbuilder in symfony2?

In my document I have a category member attribute which is referenced to the same class Category /** * Parent Category's path ( Indexed ) * * @var String * @MongoDB\ReferenceOne( targetDocument = ...
1
vote
1answer
77 views

Changing the MongoDB collection on run time in symfony2 + doctrine

I'm using Symfony2 MongoDB + Doctrine and I want to tell doctrine to save my objects in collections with different name from the name of the class that defines the object. Also the name of the new ...
0
votes
1answer
325 views

Can't install doctrine/mongodb-odm using Composer

Trying to install doctrine/mongodb-odm via Composer I get this: Loading composer repositories with package information Updating dependencies (including require-dev) Your requirements could not be ...
0
votes
0answers
79 views

DoctrineMongoDBBundle Invalid modifier specified $unset

I have this strange exception when I use MongoDB ODM in a command that saves data. I think that it comes from configuration of the bundle in prod env. Because I don't have any problems in my dev ...
1
vote
0answers
84 views

Unable to increment value in a doctrine mongo query

Looking at the example at: http://docs.doctrine-project.org/projects/doctrine-mongodb-odm/en/latest/reference/query-builder-api.html I am unable to do a simple increment. That is the value of ...
0
votes
2answers
122 views

Querying discriminated collection by ID using Doctrine MongoDB

How can I query for an object knowing only its ObjectId using Doctrine MongoDB? Queries by id, using $dm->findOneBy(array('id' => $id)) will only return a result for one of the discriminated ...
0
votes
0answers
90 views

Saving an associative array with references as values in doctrine-mongodb

How can I map a field inside a document as associative array whose values are references to another document? Let's say I have a document File which represents some file on disk. Something like this: ...
0
votes
1answer
97 views

Atomic update on multiple documents in doctrine mongodb

I work on a project with symfony2 and doctrine-mongodb-odm. I want to execute an atomic update on several documents with the querybuilder but I am missing something: ...
0
votes
2answers
56 views

Invalid Type Error Occasionally in Symfony 2 Console

I have a Symfony 2 environment in which I am using a custom data type with Doctrine's MongoDB ODM mappings. This all works, except occasionally; when I go to clear the cache or install the assets I ...
1
vote
1answer
78 views

Mongo Query Builder Skip is completely ignored. Bug?

Following the examples at: http://docs.doctrine-project.org/projects/doctrine-mongodb-odm/en/latest/reference/query-builder-api.html I have: $dm = ...
0
votes
1answer
193 views

Document serialization with Doctrine MongoDB ODM

I'm trying to code a class handling serialization of documents by reading their metadata. I got inspired by this implementation for entities with Doctrine ORM and modified it to match how Doctrine ODM ...
2
votes
1answer
295 views

EmbedMany Strings in an MongoDB Document?

I need to have a simple array/collection of strings in my Document, but cannot work out a way to acheive this with Doctrine ODM. This is an example class/document, with $tags needing to be a simple ...
2
votes
0answers
190 views

DUPLICATE KEY ERROR same error message on different value

I get the same message error (duplicate key error index with same id on different value) when I would like to insert value after a failed. Key exist for value 15 to 17 in MONGODB, exception will be ...
1
vote
2answers
354 views

findBy reference doctrine-mongodb

I have collections of users and posts. User looks like { "_id" : ObjectId("5089cc4c7b03b9902b000000"), "facebook_id" : "522128874" } Post looks like { "_id" : ...
0
votes
2answers
311 views

How to turn on logging (profiling) using ZF2 Doctrine MongoDb module

I've successfully integrated Doctrine MongoDB module in Zend Framework 2 and now I need to keep track of each query to MongoDB. Does anybody know how to turn on logging?
0
votes
1answer
121 views

Mongo ODM near query does not populate distance property. It is null?

According to Mongo ODM one should be able to get distance after a near query: http://docs.doctrine-project.org/projects/doctrine-mongodb-odm/en/latest/reference/geospatial-queries.html#distance When ...