是否存在与此类似的内容:在Room数据库中找到的@Insert(onConflict = OnConflictStrategy.REPLACE),您可以在Objectbox中执行此操作。如果没有,如何避免将重复的条目保存在对象箱实体中?谢谢。

最佳答案

在对象框“数据模型”类中,使项目批注

private Box<User> userBox;
userBox = ObjectBox.get().boxFor(User.class);

//your inserted object

if (!userBox.getAll().contains(insertedObject)){
                        leadBoxForLeadOpions.put(l);
                    }

10-08 16:42