The Doctrine Project is a collection of open source libraries and tools for dealing with database abstraction and Object-Relational Mapping written in PHP.
How can I implement the following query with Query Builder? SELECT * FROM t WHERE t.status = 1 OR EXISTS(SELECT * FROM …
symfony doctrine query-builderThere are several ways that we can access the entity's repository in Symfony2 controllers or services which each has its …
symfony design-patterns doctrine-orm doctrine symfony-2.3My DoctrineFixturesBundle is installed and I can load fixture trough the command-line but , how can I load fixtures from my …
symfony doctrine functional-testing fixtureHave been using it for a while with CodeIgniter and I can't remember if I installed v2 or just copied …
codeigniter doctrine doctrine-orm doctrine-1.2I'm learning Symfony2 (and OOP) and want to create a service that's available throughout my app. This service takes a …
symfony doctrineI'm following the security chapter of the Symfony 2 book. There's is an example with a table USERS and GROUPS. There …
doctrine symfony many-to-many dqlI need to get all rows where DATE(a.when) matches the string 2014-09-30. $builder = $this->em->…
date datetime doctrine-orm doctrine query-builderWhat's the difference between Doctrine\Common\Persistence\ObjectManager and Doctrine\ORM\EntityManager when using it in a custom form type? …
symfony doctrine doctrine-orm symfony-formsI'm having trouble crafting a fairly simple query with Doctrine... I have two arrays ($countries, $cities) and I need to …
symfony1 doctrine where-clause dql