Results 461 comments of Lunny Xiao

CI failed and could you give more comments about the change?

This is a golang JSON issue, it's unrelated with XORM.

There is already a `deleted` tag.

I think `deleted` should support `int64`. if the `int64` > 0 then it's deleted and with timestamp otherwise it's not deleted.

You can define yourself logger via `core.ILogger`.

There are two method to do that. 1. ```go def.DB.Table("users").Cols("password", "token").Update(userstt.User{Password: params.Password, Token: ""}, userstt.User{Token: params.Token}) ``` 2. ```go def.DB.Table("users").Update(map[string]interface{}{ "password": params.Password, "token": ""}, userstt.User{Token: params.Token}) ```

这个地方需要XORM改进,当字段为time.Time类型且IsZero时,如果有默认值则使用默认值,如果没有默认值则为nil

暂时以你最后那个comment作为临时解决方案