Guest
Public paste!

Untitled

By: a guest | Feb 9th, 2010 | Syntax: PHP | Size: 0.22 KB | Hits: 27 | Expires: Never
This paste has a previous version, view the difference. Copy text to clipboard
  1. $q =
  2.     Doctrine_Query::create()                
  3.         ->from('LinkingUserGroup link')                
  4.         ->innerJoin('link.Group g')
  5.         ->where('link.user_id = ?', array($userId))
  6.         ->orderBy('g.name');