Tagged Questions
0
votes
1answer
52 views
Find value in an @Hash field type with mongodb-odm
I really new to mongoDb and I have a problem.
i have this field in a collection:
data: [ "data1", "data2" ]
Why this query via console works :
db.collection.find({'data': /data1/})
but this no?
...
1
vote
3answers
80 views
How do I force doctrine to reload the data from the database?
I'm using doctrine/mongodb 1.0.0-BETA1 in a symfony2.1 install.
So i'm trying to force my repository to call data from my database instead of using the object it has cached.
$audit = ...
0
votes
0answers
34 views
How to count with Doctrine MongoDB ODM? [duplicate]
Possible Duplicate:
MongoDB ODM SELECT COUNT(*) equivalent
I need to count the results for a given query, without retrieving the data for those results. Eg: 'count how many active users ...
0
votes
1answer
186 views
How to create a WHERE … OR … query with MongoDB in Symfony2? [duplicate]
Inside my UserRepository I want to create custom queries, like the ones I can create with $dm->createQuery('some query') when not using MongoDB.
How can I do this? I see that ...
0
votes
1answer
67 views
Can there be an issue if Mongo class is instanced twice?
I want to use MongoDB for storing sessions, and I need to inject the \Mongo object into the session handler.
I first thought I could fetch it from doctrine with something like this:
services:
...
0
votes
2answers
133 views
Domain object design for dynamic organization staff
I have a base entity "Organization" that represents an organization (be it a business entity, a baseball team, or a podcast). It is quite generic.
Each of these organizations can have multiple ...
0
votes
1answer
177 views
Retrieve parent document with a doctrine2 or mongodb query
I am using Symfony 2.1 and Doctrine - MongoDBBundle.
I have three documents. The first is a company, which I call "Institution". The second are contacts inside the institution, and the third are the ...
0
votes
2answers
531 views
Adding and removing elements from doctrine mongodb ODM results - PHP
How do you remove and add elements to results returned by doctrine's odm. For example,
I have the query
$fruits = $dm->createQueryBuilder('Fruits')
...
0
votes
1answer
221 views
Doctrine Mongo ODM merge for externally modified data
I'm writing a Symfony2 app that allows mobile users to create and update "Homes" via a REST service. I'm using MongoDB as the storage layer and Doctrine MongoDB ODM to do the Document handling.
The ...