通过 Gorm 查询模型

Query Models through Gorm

这是我的律师模型

type Lawyer struct {
        ID            uint                 `gorm:"primaryKey" json:"id"`
        FirstName     string               `gorm:"type:varchar(100) not null" json:"first_name"`
        LastName      string               `gorm:"type:varchar(100) not null" json:"last_name"`
        FullName      string               `gorm:"->;type:text GENERATED ALWAYS AS (concat(first_name,' ',last_name)) VIRTUAL;" json:"full_name"`
        LocationID    uint                 `gorm:"not null" json:"location_id"`
        Location      Location             `gorm:"foreignKey:location_id" json:"location"`
        Email         string               `gorm:"unique;not null" json:"email"`
        Phone         string               `gorm:"type:varchar(100);not null" json:"phone"`
        Password      string               `gorm:"type:varchar(100);not null" json:"password"`
        ImageURL      string               `gorm:"type:text" json:"image_url"`
        Education     string               `gorm:"not null" json:"education"`
        Experience    uint                 `gorm:"not null" json:"experience"`
        PracticeAreas []LawyerPracticeArea `gorm:"foreignKey:LawyerID" json:"practice_areas"`
        CreatedAt time.Time `gorm:"" json:"created_at"`
        UpdatedAt time.Time `gorm:"" json:"updated_at"`
    }

这是我的 LawyerPracticeAreas 模型

type LawyerPracticeArea struct {
    ID       uint `gorm:"primaryKey" json:"lawyer_practice_area_id"`
    LawyerID uint `gorm:"not null" json:"lawyer_id"`
    PracticeAreaID uint         `gorm:"not null" json:"practice_area_id"`
    PracticeArea   PracticeArea `gorm:"foreignKey:PracticeAreaID" json:"practice_area"`
    Charge         int          `gorm:"" json:"charge"`
    CreatedAt      time.Time    `json:"created_at"`
    UpdatedAt      time.Time    `json:"updated_at"`
}

最后是我的 PracticeArea 模型

type PracticeArea struct {
    ID     uint   `gorm:"primaryKey" json:"practice_area_id"`
    Name   string `gorm:"not null" json:"name"`
    AvgFee string `gorm:"not null" json:"avg_fee"`
}

我正在通过这个查询我的律师模型:-

result := db.Preload(clause.Associations).Find(&lawyer)

此结果也包含所有 Lawyers 和 LawyerPracticeAreas 数据,但不包含来自 LawyerPracticeAreas 内的 PracticeArea table 的数据。

Lawyer 和 PracticeArea 是多对​​多关系,LawyerPracticeAreas 就是 table.

如您所见,我收到了 practiceAreas 数组,但没有收到该 PracticeArea 的数据。

有没有办法只在一个查询中查询它,或者我是否必须遍历我所有的律师,然后遍历 practiceAreas,然后为每个 id 找到 practiceArea 数据。

根据 documentation:

clause.Associations won’t preload nested associations, but you can use it with Nested Preloading together...

在您的情况下,要加载所有内容,甚至是嵌套超过一层的关联,您可以这样做:

result := db.Preload("Location").Preload("PracticeAreas.PracticeArea").Find(&lawyer)