0
我想映射與datanucleus中的複合鍵的類。主鍵是由兩個外鍵,我似乎無法能夠包括這些外資類的fetchgroup:Datanucleus fetchgroup複合鍵
使用註釋:
@PrimaryKey
@Column(name = idElementOne, allowsNull = "false")
private Long idElementOne;
@PrimaryKey
@Column(name = "idElementTwo", allowsNull = "false");
private Long idElementTwo;
工作
@PrimaryKey
@Column(name = idElementOne, allowsNull = "false");
private ElementOne elementOne;
@Column(name = "idElementTwo", allowsNull = "false");
private Long idElementTwo;
作品
但
@PrimaryKey
@Column(name = idElementOne, allowsNull = "false")
private ElementOne elementOne;
@PrimaryKey
@Column(name = "idElementTwo", allowsNull = "false");
private Long idElementTwo;
沒有。
我該怎麼做?
您還沒有提及任何獲取組元數據或使用獲取組API。所以不知道爲什麼你認爲某個特定的抓取組中有什麼東西 – DataNucleus 2010-12-08 07:47:32