我想在ORMlite中建立自我关系。
我在epub中有这些章节结构。
-Chapter 1
---chapter1.1
---chapter1.2
-chapter 2
---chapter2.1
------chapter2.1.1
------chapter2.1.2
-chapter3
等等。
我想在章节(父母和孩子)之间保存相同的关系。
在章节中,我已经完成了自我关系作为打击
@DatabaseTable
public class ChapterDto
{
//all of my attributes
@DatabaseField(canBeNull = true, foreign = true)
private ChapterDto parent;
@ForeignCollectionField(eager = true, maxEagerLevel = 99)
Collection<ChapterDto> subChapters;
}
我的问题,如何使用此关系正确插入数据? 提前致谢 。