标签: go go-gorm
我可以在gorm中进行双向关联吗?
即
type Store struct { ID int Products []Product } type Product struct { ID int StoreID int Store Store }
因此,商店有许多产品,而产品属于商店。
这是对的吗?