Good evening everybody!
I've got a little problem. I would like to filter a query's result using a custom DQL Query in Symfony2 framework.
Here is the state of my database:

I've got the SQL Query that returns the wanted result:
SELECT * FROM question WHERE question_id NOT IN (SELECT question_id FROM questions_joueurs WHERE joueur_id = 1)
I just would like to implement that in my QuestionRepository.
Thanks a lot for your next help !
CloudCompany