0
に基づいてprentエンティティを取得する私は、エンティティの構造を次ていますJPA述語は、子エンティティ数
@Entity
class ParentClass {
@Id
int id;
@ManyToMany
List<ChildClass> childAttribute;
}
@Entity
public class ChildClass {
@Id
int id;
}
は私がchildAttributeという名前の属性の大きさが「ゼロ」である親エンティティをフェッチする述語を、書きたいです。おかげさまで 以下のように行うことができます
2次元マッピングを使用する。 –
https://stackoverflow.com/questions/29316485/hibernate-one-to-many-mapping-configuration –
これまでに試したことを教えてください。 – crizzis