2021-11-17 11:31

JPA - @ElementCollection의 'in' 조건

아래와 같은 Entity가 있다고 생각하자
@Entity
@Table(name = "item")
@.....
class Item(
id: Long? = null,
attributes: Set<Attribute>
) ...

댓글