假设我们有以下模型:
type Company struct {
gorm.Model
Name string
Addresses []Address
}
type Address struct {
gorm.Model
CompanyID uint64
Street string
City string
Country string
}
我想获取在特定位置有地址的所有公司(及其地址)。像这样的东西:
SELECT company.*, address.* FROM company
INNER JOIN address ON address.company_id = company.id AND address.country = 'Bulgaria'
因此,如果一家公司在特定位置没有地址,我根本不会得到它。我正在尝试这样的事情:
db.Joins("Addresses", "addresses.country = ?", "Bulgaria").Find(&companies)
但是,它不起作用,因为 GORM 不采用 Joins 的第二个参数(使用预加载连接时),所以我应该检查生成的查询并做出类似的事情:
db.Where(`"Address".country = ?`, "Bulgaria").Joins("Addresses").Find(&companies)
有没有更好的方法/不是 hacky 的方法?请记住,以上所有代码都是对真正问题的模拟,我不想公开原始模型/查询。
慕标琳琳
四季花海
相关分类