I\'m using Go with the GORM ORM. I have the following structs. The relation is simple. One Town has multiple Places and one Place belongs to one Town.
type P
First change your model:
type Place struct { ID int Name string Description string TownID int Town Town }
And second, make preloading: https://gorm.io/docs/preload.html