3

在我的一个爱好项目中,我有一个这样的结构:

type Resource struct {
    Id int
    ParentIds []int
    Title string
    Contents []byte
    Resources []Resource
}

每个资源都可能有一些子资源([]Resource)。我想开始使用像gorp这样的查询到结构映射器,但我不知道如何映射查询

SELECT r.Id, r.Title, r.Contents
FROM Resources r
LEFT OUTER JOIN Resources sub ON sub.ParentIds @> ARRAY[r.Id]::integer[]

任何人都可以创建一个最小的工作示例或将我指向相关文档吗?也许 gorp 不是适合这项工作的工具?如果有更好的选择,我也愿意接受建议。谢谢你。

4

1 回答 1

2

在https://github.com/go-gorp/gorp的 gorp 自述文件中有一个加入示例。我不认为有任何内置的方法可以像您正在做的那样将单独的表放入数组中。

其中 InvoicePersonView 是一个保存查询结果的结构。

// Run your query
query := "select i.Id InvoiceId, p.Id PersonId, i.Memo, p.FName " +
    "from invoice_test i, person_test p " +
    "where i.PersonId = p.Id"

// pass a slice to Select()
var list []InvoicePersonView
_, err := dbmap.Select(&list, query)

// this should test true
expected := InvoicePersonView{inv1.Id, p1.Id, inv1.Memo, p1.FName}
if reflect.DeepEqual(list[0], expected) {
    fmt.Println("Woot! My join worked!")
}
于 2014-07-24T06:56:43.977 回答