gpt4 book ai didi

android - Realm ,copyFromRealm,从结果中排除关系

转载 作者:太空狗 更新时间:2023-10-29 16:30:47 29 4
gpt4 key购买 nike

是否可以从 copyFromRealm 的结果中排除某些关系?

比如我有一个类

open class City : RealmObject() {
var id : String? = null
var name : String? = null
var streets : RealmList<Street>? = null
}

我想获取非托管对象的列表 - 但我不希望该结果中包含街道。

最佳答案

使用 Realm.copyFromRealm(Iterable<E> realmObjects, int maxDepth)并使用 0对于 maxDepth .见文件 here .

City unmanagedCity = realm.copyFromRealm(managedCity, 0);

关于android - Realm ,copyFromRealm,从结果中排除关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39500644/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com