Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using symfony2 form along with propel. I am having trouble on how to order the related entity from propel's model.

The abstracted code below, is taken from http://www.propelorm.org/cookbook/symfony2/mastering-symfony2-forms-with-propel.html, which show how to relate them together. I am wondering how do I order them.

$builder->add('author', 'model', array(
    'class' => 'Acme\LibraryBundle\Model\Author',
));

For Example, If in my author table there are columns name, age,.... How should make it to order by name.

Thank you.

share|improve this question
Why don't you post it as an answer? :) – thecatontheflat Jan 16 at 11:34

1 Answer

up vote 0 down vote accepted
$builder->add('author', 'model', array(
    'class' => 'Acme\LibraryBundle\Model\Author', 
    'query' => \Acme\LibraryBundle\Mode\AuthorQuery::create()->orderByName()
));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.