Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私が持っているもの: "image" 1:Many "imageToTag" Many:1 "tag"
少なくともタグ[a、b、c]を持つすべての画像を返すクエリを発行したいと思います。これをJPQLでどのようにモデル化できるかは私にはわかりません。クエリ文字列を動的に作成することはできますが、パフォーマンスとセキュリティ上の理由からそれは悪いことです。何か案は?
これはどうですか、jpaクエリ言語です
Select img from Image img where img.tag.description in ('A','B','C');