gpt4 book ai didi

go - 在水牛模型中指定多对多关系

转载 作者:行者123 更新时间:2023-12-01 21:23:53 24 4
gpt4 key购买 nike

请问有人知道如何在水牛模型中指定多对多关系吗?

最佳答案

gobuffalo many_to_many ...

type Organization struct {
ID int `json:"id" db:"id"`
Users Users `many_to_many:"user_organizations"`
}


type User struct {
ID int `json:"id" db:"id"`
Organizations Organizations `many_to_many:"user_organizations" json:"-"`
}


type UserOrganization struct {
ID int `json:"id" db:"id"`
OrganizationID int `json:"organization_id" db:"organization_id"`
UserID int `json:"user_id" db:"user_id"`
User User `belongs_to:"users"`
Organization Organization `belongs_to:"organizations"`
}

这些结构中的每一个都在各自的model/*。go文件中

https://gobuffalo.io/en/docs/db/relations

关于go - 在水牛模型中指定多对多关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58413605/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com