我想知道是否有查詢realmObjects其中其realmList等於另一個realmList直接的方式realmObject。查詢它realmList等於另一個realmList
例子:
public class Tags extends RealmObject{
@PrimaryKey
private String ID = UUID.randomUUID().toString();
private String tag;
}
public class Article extends RealmObject {
@PrimaryKey
private String ID = UUID.randomUUID().toString();
private RealmList<Tags> tags;
}
RealmList<Tags> userTags;
Article article = mDB.where(Article.class).equalTo("tags", userTags).findFirst();
你從哪裏得到'userTags'?它屬於名爲'User'的RealmObject嗎? – EpicPandaForce
不一定。該應用程序有一個搜索引擎,用戶可以插入標籤來查找文章。我想返回所有符合該標籤條件的文章。任何想法如何做到這一點? – user274051