如何根据Realm中存储的对象的主键从Realm Result中删除单个对象。以下是我的Realm Model
open class ParentModel : RealmObject(){
@Required
@PrimaryKey
var uid : String ?= null
var realmRequest : RealmList<RealmRequests> ?= null
}
现在我想根据RealmRequest的主键从RealmList
中删除对象。我怎样才能做到这一点 。请告诉我。
答案 0 :(得分:1)
你可以这样做:
ggplot_fcst<-ggplot(plot_fcst)+geom_line(aes(y=Optimal,x=week))
for(i1 in 1:length(bands)){
ggplot_fcst <- ggplot_fcst+geom_ribbon(aes_string(ymin=paste("lower",bands[i1]*100,sep=""),ymax=paste("upper",bands[i1]*100,sep=""),x="week"),alpha=alp[i1])
}
ggplot_fcst
答案 1 :(得分:-1)
使用此方法。将Class设置为Class,将搜索删除。
public void deleteClass(Int id) {
realm.executeTransaction(realm1 -> realm.where(Class.class).equalTo("id", id).findFirst().deleteFromRealm());
}