2

我有 3 张桌子 A、B、C

Table A (
idA1 int unsigned not null,
idA2 int unsigned not null,
primary key(idA1, idA2)
)

Table B (
idB1 varchar(36) not null,
primary key(idB1)
)

Table C (
idC1 int unsigned not null,
idC2 varchar(36) not null,
idC3 int unsigned not null,
primary key(idC1, idC2, idC3),
foreign key(idC1, idC2) references A(idA1, idA2),
foreign key(idC3) references B(idB1)
)

我对键表 A 使用 conposite-id 但后来遇到问题映射表 C 如何使用下一个结构进行休眠映射?

4

1 回答 1

2

我为我的问题找到了很好的解决方案

解决方案

于 2012-11-09T11:52:43.473 回答