class Product {
String name;
Set<Label> labels = new HashSet<Label>();
...
}
和
class Label {
String name;
Set<Product> products = new HashSet<Product>();
...
}
现在我想知道如何在 Hibernate 中查询那些同时具有标签“A”和标签“B”的产品。非常感谢。
class Product {
String name;
Set<Label> labels = new HashSet<Label>();
...
}
和
class Label {
String name;
Set<Product> products = new HashSet<Product>();
...
}
现在我想知道如何在 Hibernate 中查询那些同时具有标签“A”和标签“B”的产品。非常感谢。