0
我想知道是否必須設置flush:true當我在我的域類中的數據庫上進行操作時。例如:更新域類和刷新會話?
class TreeNode {
TreeNode removeFromChildren(TreeNode child) {
TreeNodeChild.findByNodeAndChild(this, child).delete(flush: true)
this
}
...
}
或者是以下正確的符號?
class TreeNode {
TreeNode removeFromChildren(TreeNode child) {
TreeNodeChild.findByNodeAndChild(this, child).delete()
this
}
...
}
問題是:我應該刷新會話嗎?