0
私は、2つのオブジェクトがあります。私の目標は@Formulaの代わりに?
@Table(name = "reservation")
Reservation
@Id
Integer id;
Integer uuid;
:
@Table(name = "reservation")
Reservation
@Id
Integer id;
Integer uuid;
@Formula("(SELECT * FROM user b WHERE b.uuid = uuid)")
List<User> users;
問題はオブジェクトと@Formula
doesntの作品です
@Table(name = "user")
User
@Id
Integer id
Integer uuid;
と予約を。
同じuuidで予約されているすべてのユーザーのリストを含めるにはどうすればよいですか?
私はこれを見つけたが、おそらくより良いオプションがある非PKの列を参照する関係の https://stackoverflow.com/a/37502703/3871754