I have an issue with datamapper orm and codeigniter.
I have an array with person names:
$names = array('john t', 'alex f', 'martin a');
Now I want to get all person who have this name:
$persons = new Person();
$persons->where_in('name', $names);
$persons->get();
My Question is just how can I sort person objects like my array ? If I echo persons the sorting is just other than my array.
I know there is a way to order_by columns for example $persons->order_by('id DESC');
TY.