具有嵌套结构和关系的Gorm和切片元素

时间:2018-02-02 23:24:24

标签: go go-gorm

我正在gorm使用MySQL driver

我有以下结构...

type City struct {
    ID uint
    Name string
    Slug string
    StateID uint // foreign key, must be used like INNER JOIN state ON city.state_id = state.id
    State *State
}

type State struct {
    ID uint
    Name string
    Slug string
}

这是简单的一对一关系(每个城市属于一个州)

使用原始SQL我使用以下代码将所有城市提取到[]City

rows, err := db.Query(`SELECT c.id, c.name, c.slug, s.id, s.name, s.slug FROM city c INNER JOIN state s ON c.state_id = s.id`)
if err != nil {
    return err
}
defer rows.Close()

for rows.Next() {
    city := &City{
        State: &State{},
    }
    err = rows.Scan(&c.ID, &c.Name, &c.Slug, &c.State.ID, &c.State.Name, &c.State.Slug)
    if err != nil {
        return err
    }

    *c = append(*c, city)
}

return nil

如何通过gorm提取所有城市,以便gorm将扫描每个City.State字段相关状态?有没有办法在不调用Rows()然后手动Scan的情况下执行我需要的操作?

我期待的是:

cities := make([]City, 0)
db.Joins(`INNER JOIN state ON state.id = city.state_id`).Find(&cities)

Statenil。我做错了什么?

1 个答案:

答案 0 :(得分:0)

您需要使用Preload方法:

db.Preload("state").Joins("INNER JOIN state ON state.id = city.state_id").Find(&cities)

在Gorm文档中查看更多信息:http://gorm.io/docs/preload.html