Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Golang Gorm: Is it possible to delete a record via a many2many relationship?

Tags:

go

go-gorm

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 {
    gorm.Model
    Languages         []Language `gorm:"many2many:user_languages;"`
}

type Language struct {
    gorm.Model
    Name string
}

db.Model(&user).Related(&languages)

Let's say I create a user and it has two associated languages.

I fetch a user record from the database and remove one language from the user's Languages array. I then save the user with gorm:save_associations set to true.

I would expect GORM to delete the record associating the user to this language (in the association table that GORM manages). However, it is not deleted. Is this expected?

Is it possible to delete many2many association records by removing a language from the Languages list on the user record and then saving the user? If not, how should this be done in GORM?

Update

I found a solution to this question, but not sure it's the best way to do this. I store the current languages, clear all the associations, then add back the languages, then save.

languages := user.Languages
DB.Model(&user).Association("Languages").Clear()
user.Languages = languages
like image 382
Matthew S Avatar asked Jul 08 '16 15:07

Matthew S


2 Answers

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)
like image 132
Alejandro Rangel Avatar answered Sep 20 '22 12:09

Alejandro Rangel


I found a solution to this question, but not sure it's the best way to do this. I store the current languages, clear all the associations, then add back the languages, then save.

languages := user.Languages 
DB.Model(&user).Association("Languages").Clear()
user.Languages = languages
like image 23
Matthew S Avatar answered Sep 18 '22 12:09

Matthew S