The Doctrine Project is a collection of open source libraries and tools for dealing with database abstraction and Object-Relational Mapping written in PHP.
I'm trying to execute some custom SQL to retrieve some model objects in a Symfony application. I found a tutorial …
php symfony1 doctrine symfony-1.4Let's say I have two entities in my Symfony2 project : Category and Article (a category having many articles). In my …
symfony doctrine doctrine-orm lazy-loadingOk i have this code: SELECT IFNULL(s2.id,s1.id) AS effectiveID, IFNULL(s2.status, s1.status) AS effectiveStatus, …
symfony doctrine query-builder ifnullWithin the same entity I have a PreUpdate and a PrePersist. The PreUpdate fires, but the PrePersist never does. I …
php doctrine doctrine-ormI hope you can help me with this problem because I really cannot see what is wrong here. I have 2 …
orm doctrine relationTrying to conver my sql queries into dql, seems im doing something wrong. I need basic joins, something like this. …
symfony doctrine dqlI have two classes - Page and SiteVersion, which have a many to many relationship. Only SiteVersion is aware of …
php doctrine dqlI need to know if there is a way to do something like this: $customerClient = $clientTable->findByCustomerNumber($this->…
symfony1 doctrine findbyI am relatively new to Symfony2 and so far love it - except for this problem that I keep coming …
symfony doctrine-orm doctrine entities