本文介绍了如何使用GORM存储嵌入式结构?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如果我具有这样的类型,如何使用GORM存储嵌入式结构
How can I store an embedded struct with GORM if I have a type like this
type A struct {
point GeoPoint
}
type GeoPoint struct {
Lat float64
Lon float64
}
GORM尝试将其添加到新表中,但我想将其添加为另一个字段.
GORM tries to add it in a new table, but I want to add it as another field.
这怎么办?
推荐答案
您可以尝试:
type A struct {
point GeoPoint `gorm:"embedded"`
}
这篇关于如何使用GORM存储嵌入式结构?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!