-
那官网博客的例子,上面最后一个例子是查看每个人有多少数量的车,那如果我是想要查看每个人有多少辆车
type AccountUser struct {
Account xorm:"extends"
Car []Car xorm : "extends"
}
这种一对多的关系现在有解决方法吗???
-
```
type TCfg struct {
Id int64
Updated time.Time `xorm:"not null created"`
}
```
```
func UpdCfgUpdated(id int64) bool {
c := new(TCfg)
c.Updated = time.Now()
_, err := …
-
那官网博客的例子,上面最后一个例子是查看每个人有多少数量的车,那如果我是想要查看每个人有多少辆车
type AccountUser struct {
Account `xorm:"extends"`
Car []Car `xorm : "extends"`
}
不支持这种方式吗?还是说需要如何正确使用
-
下面是一条插入数据的 demo
```go
n := model.Notification{
Id: id.Generate(),
Tittle: input.Tittle,
Content: input.Content,
Status: model.NotificationStatusActive,
}
if _, err = sess…
-
![image](https://github.com/YumeMichi/honoka-chan/assets/47047663/60decdc0-c68e-4b26-bce6-35cbb9f1ac0a)
我已经按照文档修改好了Android客户端和Windows上的服务端,但是进入游戏之后登录会显示"系统错误,appid不存在。"Windows上的honoka-chan.exe只显示了
[…
-
我有一个结构体是这样的
```go
type User struct {
ID int `xorm:"pk autoincr"`
DeptID int `xorm:"dept_id"` //外键, 关联dept表
}
```
假设有这样一条数据: {id: 1, dept_id: 1}
我想把id为1用户的dept_id更新为NULL
在不使用原…
huayi updated
6 years ago
-
不确定是不是 xorm 的bug
使用了
```
sess := Db.NewSession()
defer sess.Close()
sess.Begin()
```
出现下面问题
`Handler crashed with error runtime error: hash of unhashable type models.Device`
```
1 1 3 设备…
-
https://geektutu.com/post/geeorm.html
7天用 Go语言/golang 从零实现 ORM 框架 GeeORM 教程(7 days implement golang object relational mapping framework from scratch tutorial),动手写 ORM 框架,参照 gorm, xorm 的实现。功能包括对象和表结…
-
### Gogs version
0.12.4
### Git version
- Server: n/a
- Client: n/a
### Operating system
Kubuntu 20.04.3 LTS
### Database
PostgresQL 13.5
### Describe the bug
Gogs does not allow database …
-
### Feature Description
It'd be nice if we could offer a API where third-party integrations like code coverage could create sidebar content into a PR, like for example coverage.
I could see it a…