我有一个域
Author{
String name
String AuthorId
hasMany = [books:Book]
}
和
Book{
String title
String publisher
belongsTo = [author:Author]
}
我可以拥有的唯一输入是 AuthorId。使用此值如何使用 HibernetCriteriaBuilder 获取域 Book 的记录eq(propertyName, propertyValue)
谢谢!!!