8

Situaction: I am trying to select count() in DQL for users NOT in specific group.

Standard ManyToMany unidirectional relation between User and Group entities from FOSUserBundle (and SonataUserBundle). System: Symfony 2.5, Doctrine 2.4.

Entity User

P.S. this is not real code copied. It is not possible because there are several layers extending with different config files in different formats and places, so if you spot mistype, this is not the problem.

namespace RAZ\UserBundle\Entity;
/**
 * @ORM\Table(name="fos_user_user")
 */
class User
{
    /**
     * @var integer
     *
     * @ORM\Column(name="id", type="integer")
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="AUTO")
     */
    protected $id;

    /**
     * @var Collection
     *
     * @ORM\ManyToMany(targetEntity="Group")
     * @ORM\JoinTable(name="fos_user_user_group")
     */
    protected $groups;
}

Entity Group

namespace RAZ\UserBundle\Entity;
/**
 * @ORM\Table(name="fos_user_group")
 */
class Group
{
/**
     * @var integer
     *
     * @ORM\Column(name="id", type="integer")
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="AUTO")
     */
    protected $id;
}

Question: can this even be done in DQL?

Question very similar to: How to get entities in a many-to-many relationship that do NOT have a corresponding linked entity with DQL and Doctrine? The difference is I need to check for only one specific group.

Working SQL (returns 1423):

SELECT COUNT(*) cnt
FROM fos_user_user u
LEFT JOIN fos_user_user_group dug ON u.id = dug.user_id AND dug.group_id = 70
WHERE dug.user_id IS NULL

Incorrectly working DQL (returns 3208):

SELECT COUNT(u)
FROM RAZUserBundle:User u
LEFT JOIN u.groups dug WITH dug.id = 70
WHERE dug IS NULL

Problem is DQL generates different SQL:

SELECT COUNT(u.id)
FROM fos_user_user u
LEFT JOIN fos_user_user_group ug ON u.id = ug.user_id
LEFT JOIN fos_user_group g ON g.id = ug.group_id AND (g.id = 70)
WHERE g.id IS NULL

Any suggestions?

Community
  • 1
  • 1
Aurelijus Rozenas
  • 2,176
  • 2
  • 28
  • 40
  • I think you may have to define your ManyToMany intermediate table as a separate entity (connected to User and Group with OneToMany and ManyToOne relationships, and potentially with extra code in the entities to handle that). You can then use @Matthew A Thomas's suggestion, I think it's not working currently because you just don't have a UserGroup entity. – frumious Sep 17 '14 at 12:02
  • It's also interesting that the generated SQL gives the wrong answer, have you identified why that is? Is it that the LEFT JOIN onto fos_user_user_group is returning a lot of nulls for Users with no groups at all? Only thing occurring to me right now is to do two queries, and subtract the number who *do* match from the total. – frumious Sep 17 '14 at 12:07
  • Yes, LEFT JOIN is returning null for each group. – Aurelijus Rozenas Sep 17 '14 at 12:14
  • So you are saying it is impossible select count in current implementation? – Aurelijus Rozenas Sep 17 '14 at 12:15
  • I don't know for certain, but I'm not aware of a way. There's always raw SQL, if you don't want to alter your entities? – frumious Sep 17 '14 at 12:17
  • I used native SQL where it was possible, but there are some big DQL queries in project that would extremely complicated to redo it in SQL. I still think it's odd I cannot select this... – Aurelijus Rozenas Sep 17 '14 at 12:23

2 Answers2

8

I don't think your DQL is quite right. Can you post it? But in the meantime, this should work.

   $em = $this->getDoctrine()->getManager();
   $qb = $em->createQueryBuilder();

   $result = $qb->select('COUNT(u)')
                ->from('UserBundle:User' , 'u')
                ->leftJoin('u.UserGroup','g')
                ->where('g.GroupId = :id')
                ->andWhere('g.UserId = :null')
                ->setParameter('id', 70)
                ->setParameter('null', null)
                ->getQuery()
                ->getOneOrNullResult();

Also writing your DQL this way is easier to read ;)

Lunfel
  • 2,499
  • 21
  • 29
Matthew A Thomas
  • 924
  • 7
  • 15
6

The only way I managed to do it in DQL is use subquery:

SELECT COUNT(u)
FROM RAZUserBundle:User u
WHERE u.id NOT IN (
    SELECT u2.id
    FROM RAZUserBundle:User u2
    JOIN u2.groups g WITH g.id = 70
)
Aurelijus Rozenas
  • 2,176
  • 2
  • 28
  • 40