英文: How to get fiber.Ctx inside Gorm's AfterCreate() hook 问题 在 Gorm 的 AfterCreate() 钩子中,我需要调用一些 ...
在upsert操作(db.Clauses clause.OnConflict)中获取已存在和已插入的ID。
英文: Get existing and inserted IDs in upsert operation (db.Clauses clause.OnConflict) 问题 我已经翻译了你提供的内容...
How to create two join tables with go-gorm [Go]
英文: How to create two join tables with go-gorm [Go] 问题 每次运行AutoMigrate()时,我都会收到错误level=fatal msg=&qu...
GORM外键似乎没有添加正确的字段。
英文: GORM foreign key doesn't seem to add proper fields 问题 我有以下模型: type Drink struct { gorm.Model...
在一个查询中使用多个计数。
英文: Use mulitple counts in one query 问题 我有以下的结构体和查询代码: type Result struct { StartedLast15Minutes int...
how to define start value for GORM auto increment
英文: how to define start value for GORM auto increment 问题 我正在使用gorm在我的项目中,并且我需要为其自增功能设置一个起始值。 我尝试添加了这...
如何在 GORM 的 belongs-to 关系中构建子查询?
英文: How can i build a subquery in a gorm belongs-to relationship? 问题 我正在使用Go语言中的GORM进行MySQL查询。我有以下结构...
如何在Go中解决SQL扫描错误的列问题?
英文: How do I solve SQL Scan error on column in Go? 问题 使用的技术 Go Gorm PostgreSQL 14.5(在Docker容器中) Open...
Sqlmock在将整数参数替换为字母数字参数时无法匹配查询。
英文: Sqlmock is not matching the query when replace integer argument with alpha-numeric one 问题 我正在尝试使...
List Column Type in GORM?
英文: List Column Type in GORM? 问题 type Competition struct { ID uint64 `gorm:"primaryKey;autoIncre...
47