是否可以从copyFromRealm的结果中排除某些关系?
例如我有一个班
open class City : RealmObject() {
var id : String? = null
var name : String? = null
var streets : RealmList<Street>? = null
}
我想得到一个非托管对象的列表-但我不想在结果中包含streets。
最佳答案
使用Realm.copyFromRealm(Iterable<E> realmObjects, int maxDepth)
并对0
使用maxDepth
。见dochere。
City unmanagedCity = realm.copytFromRealm(managedCity, 0);
关于android - Realm ,copyFromRealm,从结果中排除关系,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39500644/