Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 5th, 2012  |  syntax: None  |  size: 0.27 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How to sort records with doctrine in symfony?
  2. $this->courses = Doctrine_Core::getTable('Course')->findByUserId($this->userId);
  3.        
  4. $this->courses = Doctrine_Query::create()->from('Course c')->where('c.user_id = ?', $this->userId)->orderBy('c.user_id DESC')->execute();