Realm java不同的RealmQuery

时间:2016-07-25 13:15:38

标签: java android distinct realm

class Item {
    int type;
    String value;
}

RealmResults<Item> result = realm.where(Item.class)
        .equalTo("type", type)
        .findAll();

Realm上有很多重复的值。 我想获得独特的价值结果。

RealmResults<Item> result = realm.where(Item.class)
        .equalTo("type", type)
        .distinct("value")
        .findAll();
像这样。 对此有什么解决方案吗?

0 个答案:

没有答案