Doctrine ORM is a PHP ORM.
I'm using Doctrine's QueryBuilder to build a query, and I want to get the total count of results from the …
symfony doctrine-ormI have the following code which gives me the error: Message: Invalid parameter number: number of bound variables does not …
php doctrine-orm query-builderI am using the findBy() method on a Doctrine repository: $entities = $repository->findBy(array('type'=> 'C12')); How …
php doctrine-ormI've been reading Doctrine's documentation, but I haven't been able to find a way to sort findAll() Results. I'm using …
symfony doctrine-ormI'm trying to make a simple example in order to learn how to delete a row from a parent table …
php doctrine-orm symfony cascading-deletesI'd like to construct the following SQL using Doctrine's query builder: select c.* from customer c join phone p on …
sql symfony doctrine-ormThis is my function where I'm trying to show the User history. For this I need to display the user's …
php doctrine-orm zend-framework2I have this symfony code where it retrieves all the categories related to a blog section on my project: $category = $…
php doctrine-orm symfony query-builderI'm developing game app and using Symfony 2.0. I have many AJAX requests to the backend. And more responses is converting …
ajax doctrine doctrine-orm symfony