(Quick Reference)

removeFrom*

目的
Purpose

Opposite of the addTo method in that it removes instances from an association.

使用例
Examples

def author = Author.findByName("Stephen King")

def book = author.books.find { it.title == 'The Stand' }

author.removeFromBooks(book)