1
我有下面的代碼(在Grails和檢索插件又名羅盤):如何在Compas Search框架中訪問子對象屬性?
class Topic {
String name;
static searchable = true;
}
class Question extends BaseEntity {
String question;
static searchable = true;
static hasMany = [
topics: Topic
]
}
如何搜索問題與特定的主題ID?
像Question.search(「topics#id:12」)或Question.search(「topics.id:12」)dosnt工作。