英文: Gorm and many to many relations 问题 我有一个问题,不太理解如何使用gorm获取相关信息。这是我第一次积极使用ORM。 我想要获取特定用户ID所能访问的所有设备...
Gorm – 更新模型并将其添加到切片中
英文: Gorm - Updating model and appending to a slice 问题 我正在使用gorm,并且有一些关于如何更新模型的问题。我尝试将&Comment附加到...
通过Gorm查询模型
英文: Query Models through Gorm 问题 这是我的律师模型: type Lawyer struct { ID uint `gorm:"primaryKey" j...
Gorm只能通过使用Find方法获取一条记录。
英文: Gorm only get only one records by using Find 问题 我正在尝试从我的数据库中获取所有记录,使用Find方法来获取符合条件的记录,以下是我的代码: r...
Golang Gorm不使用约束条件创建表
英文: Golang Gorm not creating table with constraints 问题 我正在使用Gorm开发一个Gin应用程序。目前,我有以下表示模型的结构体: // Cate...
关系数据库导致循环
英文: Relational Database Resulting in Loop 问题 我有以下层次结构:用户 -> 地图 -> 元素 -> 帖子 一个用户可以拥有多个地图,每个地...
How can I get the maximum value of a specific day in Gorm?
英文: How can I get the maximum value of a specific day in Gorm? 问题 我已经编写了以下代码,用于使用GORM获取某个值的每日最大值。 我传...
有没有一种方法可以使用 gorm v2 实现 PostgreSQL 表分区?
英文: Is there a way to achieve postgres table partitioning using gorm v2? 问题 在gorm v2中,有没有办法指定某个表按某个列...
Go: I get a struct field value without deferencing the pointer variable of the struct type, why?
英文: Go: I get a struct field value without deferencing the pointer variable of the struct type, why?...
Not in condition using gorm in golang – dynamic not in condition for select statement
英文: Not in condition using gorm in golang - dynamic not in condition for select statement 问题 我有两个数据库...
47