有没有办法找到所有(或只是下一个)RealmObject
字符串字典序大于目标的s?
就像是
MyEntry next = realm.where(MyEntry.class)
.greaterThan("name", current)
.findAllSorted("name")
.first();
这不起作用,因为greaterThan
没有为String
s 实现。
有没有办法找到所有(或只是下一个)RealmObject
字符串字典序大于目标的s?
就像是
MyEntry next = realm.where(MyEntry.class)
.greaterThan("name", current)
.findAllSorted("name")
.first();
这不起作用,因为greaterThan
没有为String
s 实现。