Skip to content

Instantly share code, notes, and snippets.

@dao
Created June 15, 2015 19:57
Show Gist options
  • Save dao/dce70c2f7cff9d0246f3 to your computer and use it in GitHub Desktop.
Save dao/dce70c2f7cff9d0246f3 to your computer and use it in GitHub Desktop.
$qb = $this->get('odm')->createQueryBuilder('Cesa2CourseBundle:DriveTime');
$qb->field('registrations')->elemMatch($qb->expr()
->field('student')->equals(new \MongoId($student->getId()))
->field('canceled')->equals(false)
);
$drivetimes = $qb->getQuery()->execute()->toArray(false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment