如何在 android 中的对象框数据库中插入对象列表?喜欢房间数据库

How to insert list of objects in object box database in android ? Like Room database

我想将对象列表插入对象框。有可能这样做吗?就像 android 中的房间数据库一样。有人知道怎么做吗?还是不可能?

示例代码如下:

notesBox = ((App) getApplication()).getBoxStore().boxFor(Note.class);
ArrayList<Note> noteList = new ArrayList<>();
notesBox.put(noteList);

是的,这完全符合您的建议。它也比一个一个地放置更有效(列表中的所有对象将被放入一个事务中)。

https://objectbox.io/files/objectbox-java/current/io/objectbox/Box.html#put-java.util.Collection-

https://docs.objectbox.io/getting-started#basic-box-operations