我有以下域类:
class Posts{
String Name
String Country
static hasMany = [tags:Tags]
static constraints = {
}
}
class Tags{
String Name
static belongsTo = Posts
static hasMany = [posts:Posts]
static constraints = {
}
String toString()
{
"${TypeName}"
}
}
Grails 在数据库中创建另一个表,即 Posts_Tags。
我的要求是:
例如 1 个帖子有 3 个标签。因此,在 Posts_Tags 表中有 3 行。
如何在我的代码中直接访问表 Posts_Tags,以便我可以操作数据或向其中添加更多字段。