Is there a way to nest/group conditions with the OO PHQL query builder?
Say in raw SQL you have SELECT id, name FROM table WHERE (id = 1 AND name = 2) OR (id = 1 AND name = 3)
With the query builder $queryObj->from('table') ->columns(array('id','name')) ->where('id = 1') ->andWhere('name = 2') ->orWhere(...) // nesting/grouping breaks down/un-expected nesting after this point