我正在尝试创建一个对象并在单个操作中填充该对象持有的外部集合的成员。我已经尝试了我能想到的每一种操作顺序,但似乎无法让它发挥作用。我的类(class)是(跳过不相关的字段和注释):@DatabaseTablepublicclassScheduledJob{@DatabaseField(id=true)privateStringid=UUID.randomUUID().toString();@ForeignCollectionField(eager=true)privateCollectiontasks;/*otherstuffhere...*/}@DatabaseTablepublic