I have a many2many structure similar to GORM\'s example:
// User has and belongs to many languages, use `user_languages` as join table type User struct { gor
I was having the same problem, If you want to just remove one of the associations this worked for me
c.DB.Model(&user).Association("Roles").Delete(&role)