Versions in this module Expand all Collapse all v1 v1.0.1 Dec 19, 2025 Changes in this version + type Car struct + Description string + ID uint64 + Name string + Price float64 + type House struct + Description string + ID uint64 + Name string + Price float64 + type Person struct + Cars []*Car + Houses []*House + ID uint64 + Locations []*PersonLocation + Name string + StatusList []*PersonStatus + func (x *Person) PreloadCars(db *gorm.DB) *gorm.DB + func (x *Person) PreloadHouses(db *gorm.DB) *gorm.DB + func (x *Person) PreloadLocations(db *gorm.DB) *gorm.DB + func (x *Person) PreloadStatusList(db *gorm.DB) *gorm.DB + type PersonLocation struct + Address string + City string + Country string + ID uint64 + Person *Person + PersonID uint64 + State string + type PersonStatus struct + ID uint64 + Name string + Person *Person + PersonID uint64 + Text string