在境界运作

时间:2016-02-03 10:47:47

标签: android realm

我总共有三个班级来管理经销商所选择的产品数据。

扩展RealmObject的类

1) Dealers  
     DealerId 
     DealerName

2) Products
     ProductId
     ProductName
3) DealerProduct ( contains the mapping between Dealers's selected product )
    DealerId
    ProudctId

现在我想使用领域

发出查询
 select * from Products where productId IN ('P101','P102');

是否可以在领域中触发IN操作

1 个答案:

答案 0 :(得分:1)

您可以使用RealmQuery.or()

RealmResults<Products> products = realm.where(Products.class)
            .equalTo("productId", "P101")
            .or().equalTo("productId", "P102")
            .findAll();