We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Struct结构体,主键为首字母大写时,如:Id,在执行删除操作无法删除 beedb.go 文件 562行 id := results[strings.ToLower(orm.PrimaryKey)] 进行操作时获取到的id为nil,导致无法删除。 将562行修改文 id := results[orm.PrimaryKey] 即可执行
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Struct结构体,主键为首字母大写时,如:Id,在执行删除操作无法删除
beedb.go 文件 562行 id := results[strings.ToLower(orm.PrimaryKey)] 进行操作时获取到的id为nil,导致无法删除。
将562行修改文 id := results[orm.PrimaryKey] 即可执行
The text was updated successfully, but these errors were encountered: