I have two entity, User & Post. These entities are connected with onetomany and manytoone relations. The connections are working fine. I've been trying to create a query that would get all users with post and order them by their number of post in descending order.
User Entity:
/**
* @ORM\OneToMany(targetEntity="Post", mappedBy="user")
*/
private $post;
Post Entity:
/**
* @ORM\ManyToOne(targetEntity="User", inversedBy="post")
* @ORM\JoinColumn(name="user", referencedColumnName="id", onDelete="CASCADE")
*/
private $user;
There's no problem, basically, I just can't figure out how to make the query in symfony.
So, here's the basic query that returns all users
$query = $this->createQueryBuilder('u')
->leftJoin('u.post', 'p')
->getQuery();
return $query->getResult();
Ok, so I seem to manage to sort his out. Here is the query: