I am working on a custom query builder piece of code that supports a CakePHP 3 based API. I recently got a request to make it search against a Task item for associated Users. The association from a Task to users is a belongsToMany, which has not been supported in the custom query functionality up to this point. The relationship
Tag: associations
Doctrine: owning side and inverse side
Hellow, in de Doctrine documentations says: ‘Doctrine will only check the owning side of an association for changes.’ I have read other posts here, but I can’t find an example that makes me …