我試圖做的事:沒有滿足預期結果:Realm.io - 如何使用通配符%LIKE%的查詢
mRealm
.where(Contact.class)
.equalTo(Contact.NAME, text, Case.INSENSITIVE)
.findAllSortedAsync(Contact.NAME, Sort.ASCENDING);
結果。
mRealm
.where(Contact.class)
.contains(Contact.NAME, text, Case.INSENSITIVE)
.findAllSortedAsync(Contact.NAME, Sort.ASCENDING);
結果:預期結果不符合。
預期結果:
mRealm
.where(Contact.class)
.like(Contact.NAME, text, Case.INSENSITIVE)
.findAllSortedAsync(Contact.NAME, Sort.ASCENDING);
雖然可以根據https://realm.io/docs/java/latest/#sorting-and-querying-on-string – EpicPandaForce
呀,碰上與時髦人物的問題「載有()」在我的應用程序上工作正常,但實際上我需要搜索表格中常見的「Contact.NAME」字段。例如ABBC,ABBA,牛熊證 - >%BB% –
...'包含(ContactFields.NAME,「BB」);'? – EpicPandaForce