Skip to content
This repository was archived by the owner on Sep 7, 2021. It is now read-only.
This repository is currently being migrated. It's locked while the migration is in progress.
This repository was archived by the owner on Sep 7, 2021. It is now read-only.

提议添加一个TAG功能扩展,可以更新为0或为nil的字段到数据库 #252

Open
@victor-p-wang

Description

@victor-p-wang

很多时候很多字段都有可能被更新为0,或者有时候某些字段在一开始并不知道将来会不会设置为0,如果这类字段很多,那么更新语句就会很繁琐。
比如下面,像balance和pay的字段如果很多的话,那写起来就会很长的语句,跟手写SQL差不多工作量了
user.Balance = 0
user.Pay = 0
engine.Id(id).Cols("balance").Update(&user)
而且如果程序员一旦忘了给某个字段使用Cols去设置,会是一个比较大的坑。

能不能加一个TAG的关键字,加了这类关键字的字段是可以被允许更新0到数据库的,比如
type User struct {
Balance int xorm:"allow-zero"
Pay int xorm:"allow-zero"
Age uint
}
Balance和Pay为0时可以被更新到数据库,但是Age为0就不会被更新过去

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions