英文: Escape LIKE parameters containing wildcard characters like % (and _) 问题 在GORM文档中有一个示例,展示了如何使用LIK...
当未嵌入`gorm.Model`时,GORM会发生恐慌。
英文: GORM panics when `gorm.Model` not embedded 问题 这是我的模型。请注意,我不想将gorm.Model嵌入到我的结构体中。 type Order str...
无法在*gorm.db上使用WithContext(ctx)方法,而不是gorm.db。
英文: Can't use WithContext(ctx) method on *gorm.db instead of gorm.db 问题 我将为您翻译以下内容: 我将我的数据库初始化为一...
使用Gorm通过原始查询从psql检索sum()结果
英文: Retrieve sum() result from psql using raw query with Gorm 问题 我的原始查询是: SELECT at."category...
在同一事务中更新多个表格且使用不同的goroutine时出现Gorm错误。
英文: Gorm error when updating multiple tables in the same transaction and different goroutines 问题 我有这...
使用gorm和sqlite驱动程序时,不区分大小写的唯一列
英文: Case insensitive unique column when using gorm with sqlite driver 问题 在我的 Golang 应用程序中,我在一个结构体中使用...
Gorm的关联删除不会删除行,而是更新行。
英文: Gorm Association Delete does not remove rows, instead update rows 问题 一个客户可以拥有多个角色。我想在删除客户时删除所有的角...
GORM : I inserted Data to Mysql DB but inserted empty value and null with golang gorm
英文: GORM : I inserted Data to Mysql DB but inserted empty value and null with golang gorm 问题 我尝试使用Go...
How to handle postgres DB connection timeout/drop in gorm
英文: How to handle postgres DB connection timeout/drop in gorm 问题 我的DB连接及其getter如下所示: func connectDB(...
在Gorm的AfterFind()钩子中获取smart-select结构的值。
英文: Get smart-select struct's value inside Gorm's AfterFind() hook 问题 我有这个模型: type User stru...
47