3

为了使用 ORMLite 在这两个类之间建立多对多关系:

@DatabaseTable(tableName = "test1")
public class Test1 {
    @ForeignCollectionField
    private ForeignCollection<Test2> test2Collection;
}

@DatabaseTable(tableName = "test2")
public class Test2 {
    @ForeignCollectionField
    private ForeignCollection<Test1> test1Collection;
}

我面临创建表时 ORMLite 的问题,不知道此类之间的外键..

为了建立这种关系,我必须ForeignDatabaseField在每个类上添加一个,如下所示:

@DatabaseTable(tableName = "test1")
public class Test1 {
    @DatabaseField(foreign = true, foreignAutoRefresh = true)
    private Test2 test2;
    @ForeignCollectionField
    private ForeignCollection<Test2> test2Collection;
}
@DatabaseTable(tableName = "test2")
public class Test2 {
    @DatabaseField(foreign = true, foreignAutoRefresh = true)
    private Test1 test1;
    @ForeignCollectionField
    private ForeignCollection<Test1> test2Collection;
}

这似乎是一种奇怪的方式?

4

1 回答 1

3

为了建立这种关系,我必须像这样在每个类上添加一个 ForeignDatabaseField:

对于多对多关系,将对象关联在一起的最佳方式是使用“连接表”。在您的情况下,将有一个名为Test1Test2Join或其他东西的第三个表。

@DatabaseTable(tableName = "test1test2join")
public class Test1Test2Join {
    @DatabaseField(generatedId = true)
    private long id;
    @DatabaseField(foreign = true)
    private Test1 test1;
    @DatabaseField(foreign = true)
    private Test test2;
}

有关详细信息,请参阅多对多示例

于 2013-07-17T13:44:08.070 回答