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

南楼画角 提交于 2020-05-12 19:53:30

问题


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

回答1:


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)



回答2:


Also, you can do this by using "replace"

DB.Model(&user).Association("Languages").Replace(user.Languages)



回答3:


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


来源:https://stackoverflow.com/questions/38270156/golang-gorm-is-it-possible-to-delete-a-record-via-a-many2many-relationship

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!