I have following code in volt. which i use to genenerat the country list for a select box
                                               {{ select(
                                                'country',
                                                geo_country ,
                                                'using': ['country_id','country_title'],
                                                'onchange': 'showState()',
                                                'class' : 'required',
                                                'useEmpty': 'true',
                                                'emptyText' : 'Please Choose',
                                                'emptyValue' : ''
                                                ) }}But i want to generate this by order by field value like
ORDER BY FIELD(country_title, "Canada", "India", "other"), country_id ASC
How do i archieve this expected value ?