Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

is there any option to set alias for $qb->expr()->avg('e.value') in select() method of Doctrine2 query builder?

I have e.g. this query:

$qb->select($qb->expr()->avg('e.value'), 'e someAlias')->from('Entity', 'e');

But the average value is indexed by integer in the result, like this:

array(
  0 => array(
   'someAlias' => Entity {},
   1 => 2.5255,
  ),
);

Is it possible to change key of the average value to the defined string value?

Thanks

share|improve this question

1 Answer

up vote 0 down vote accepted

Try the following to set the alias:

$qb->select(array(
                 $qb->expr()->select()->avg('e.value').' AS aveAlias')
                ,'e someAlias')
           )->from('Entity', 'e');
share|improve this answer
It works! Thank you. – Pavel Plzák Jan 3 at 22:08

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.