0

I have model class which contains string variable. I want to sort it with that variable but as Int

open class Item: RealmObject() {
    var name: String
    var price: String
}

i want somthing like this :

Realm.where(Item::class.java)
    .sortAsInt("price", Sort.ASCENDING)
    .findAll()
zihadrizkyef
  • 1,849
  • 3
  • 23
  • 46

0 Answers0