Hi Alexander,
> $query = $this->createQuery();
> $result = $query->matching(
> $query->logicalAnd(
> $query->equals('attendees.member', $member),
> Is it even possible without using SQL syntax?
No, for this type of question you need to use a DQL query because you
need to join the attendees and then query for member...
Cheers,
Christian