ある条件に基づいて3つの異なるテーブルからデータをフェッチする必要がある状況があります。 例エンティティJPA /休止状態の条件付きJoinColumn
@Entity
class Order{
id;
type;
typeId;
@Join with boqTable to get the Boq Associated with if type == BOQ and id = typeId
@Join with customTable to get custom data associated if type == CUSTOM and id = typeId
}
Orderエンティティを使用して子テーブルを挿入して更新する必要があります。 JPA/Hibernateを使ってどうすればよいのですか?私はたくさん検索しましたが、エンティティモデルではなくサービスレベルで手動で行う以外は何も解決できませんでした。
参加する一切の条件はありません。 – Kayaman