And I have this sort of relational join table.
mysql> desc FLEAG_DRAFTORDER;
+------------------+------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+------------------+------------+------+-----+---------+-------+
| DRAFTORDER_JDOID | bigint(20) | YES | MUL | NULL | |
| DRAFTORDER_ORDER | int(11) | YES | | NULL | |
| JDOID | bigint(20) | YES | MUL | NULL | |
+------------------+------------+------+-----+---------+-------+
JDOID -> FLEAGUE
DRAFTORDER_JDOID -> FTEAM
DRAFTORDER_ORDER -> LIST_INDEX_POSITION
The owning class has a field:
@Entity
public class FLeague extends HBaseIdCreateTime {
....
@ManyToMany
private List<FTeam> draftOrder;
....
}
@Entity
public class FTeam extends HBaseIdCreateTime {
....
}
So, again, I'm trying to port from old JDO to new JPA :) And I'm trying
to map a List object, where the relational table is storing the position
of each element. It looks like standard JPA doesn't want to support
this, but I was wondering if OpenJPA had this as an option in some way...:
- ordered Lists, with list position in join table Fernando Padilla
- Re: ordered Lists, with list position in join table Michael Dick
- Re: ordered Lists, with list position in join ta... Fernando Padilla
- Re: ordered Lists, with list position in joi... Michael Dick
- Re: ordered Lists, with list position in... Fernando Padilla
- Re: ordered Lists, with list positi... Michael Dick
