I'm trying to sort the results by name, when I use the code like this it works perfectly
db.tab_friends.orderBy("name").toArray()
but if I try to set a condition, for example all records with my name, it gives an error
db.tab_friends.where("name").equals('Ana').orderBy("name").toArray()
In console show this error:
orderBy(...).where is not a function
How can I solve this?