英文: Setting UUID field to NULL with gorm 问题 我正在使用的数据库是PostgreSQL,ORM是gorm。我有一个包含assigned_id字段的数据库表,该...
Golang GORM通过联接表检索多对多关系的数据
英文: Golang GORM data retrieve for many to many relationship with join table 问题 我正在使用golang 1.19和GORM...
测试使用go-sqlmock的gorm问题,使用mock.ExpectQuery和regexp.QuoteMeta比较查询。
英文: testing gorm with go-sqlmock issue comparing queries with mock.ExpectQuery and regexp.QuoteMeta ...
Gorm get all data from table with condition on nested table
英文: Gorm get all data from table with condition on nested table 问题 我有一个包含Golang结构体的表格,如下所示: type Ord...
使用gorm和sqlmock进行测试
英文: Testing with gorm and sqlmock 问题 我正在努力为我的Go Lambda函数编写一个使用sqlmock和gorm进行测试的测试。 这是我想要测试的函数: func ...
gorm不会生成字符串列
英文: gorm does not generate string columns 问题 我正在尝试使用gorm将我的模型迁移到PostgreSQL数据库。但是gorm在表中不生成字符串列。以下是我的...
在GORM库中省略空的嵌入结构体。
英文: Omit empty embedded struct in GORM library 问题 我在我的项目(REST API)中使用GORM作为ORM库。 一个书籍有一个作者。当没有定义作者(没...
如何在gorm和sqlite3中使用pgtype.Numeric?
英文: How to use pgtype.Numeric with gorm and sqlite3? 问题 我需要使用gORM存储非常大且高精度的数字,并且使用pgtype.Numeric似乎是最...
AutoMigration()在数据库端是否也会给出NOT NULL属性?
英文: Does AutoMigration() also give the NOT NULL attribute on the database side? 问题 在GORM中,AutoMigrat...
指定`gorm:”unique”`会导致预加载属于关系的问题。
英文: Specifying `gorm:"unique"`, causing preload of belongs to relation a problem 问题 这是我的帖子...
47