If i am using "order" filter while querying the data from mongodb. Case sensitve sorting is being applied. Example: Let's assume the following are the 5 values of "names" property that are stored in db. Anand Balram
akash
Cat
dog
Now ,when the query is done using "order filter" the answer is
Anand
Balram
Cat
akash
dog...
firstly uppercase lettered words are being sorted ,then the lowercase letters...Where as i want the sorting to be performed on a whole set of words .
please help me in finding a solution for these problem..