[MODM-141] Doctrine ODM: Documentation error Created: 26/Apr/11 Updated: 26/Apr/11 |
|
| Status: | Open |
| Project: | Doctrine MongoDB ODM |
| Component/s: | None |
| Affects Version/s: | None |
| Fix Version/s: | None |
| Type: | Documentation | Priority: | Major |
| Reporter: | Diego Lewin | Assignee: | Jonathan H. Wage |
| Resolution: | Unresolved | Votes: | 0 |
| Labels: | None | ||
| Environment: |
not applicable |
||
| Description |
|
I think that is a documentation issue, in http://www.doctrine-project.org/docs/mongodb_odm/1.0/en/reference/query-builder-api.html (15.3. Modifier Operations) the queries are like: $dm->createQueryBuilder('User') ->getQuery() But it is missing the update(), it should be like: $dm->createQueryBuilder('User') ->update() ->getQuery() All the queries in that section have similar issue |