$this->get('bundle_name.entity_name.service')->findBy(array(), array('name' => 'ASC'));
This gives the following result when displaying the names:
A
B
C
b
How can I order the result case insensitive? So that the result would be like this when displaying the names:
A
b
B
C