go - 如何正确使用 FirstOrCreate

标签 go go-gorm

我有以下简单结构

type Profile struct {
    gorm.Model

    Email     string    `json:"email" sql:"not null;unique"`
    LastLogin time.Time `json:"lastlogin"`
}

如果它不存在,我正在尝试插入

  db.Con.Debug().Where(db.Profile{Email: "user@domain.com"}).Assign(db.Profile{LastLogin: time.Now()}).FirstOrCreate(&profile)

我在日志中得到以下信息

(/Users/mzupan/go/src/gitlab.com/org/app/pkg/auth/login.go:182)
[2018-09-24 13:35:58]  [4.56ms]  SELECT * FROM "profiles"  WHERE "profiles"."deleted_at" IS NULL AND (("profiles"."email" = 'user@domain.com')) ORDER BY "profiles"."id" ASC LIMIT 1
[0 rows affected or returned ]

(/Users/mzupan/go/src/gitlab.com/org/app/pkg/auth/login.go:182)
[2018-09-24 13:35:58]  [1.77ms]  UPDATE "profiles" SET "last_login" = '2018-09-24 13:35:58', "updated_at" = '2018-09-24 13:35:58'  WHERE "profiles"."deleted_at" IS NULL AND (("profiles"."email" = 'user@domain.com'))
[0 rows affected or returned ]

因此即使在选择中找到 0 行,它也会尝试进行选择/更新。在我看来,我正在做正确的事。

最佳答案

我想你忘了创建表 db.CreateTable(&Profile{})

这是一个工作示例:

package main

import (
    "time"

    "github.com/jinzhu/gorm"
    _ "github.com/jinzhu/gorm/dialects/sqlite"
)

type Profile struct {
    gorm.Model

    Email     string    `json:"email" sql:"not null;unique"`
    LastLogin time.Time `json:"lastlogin"`
}

func main() {
    db, err := gorm.Open("sqlite3", "test.db")
    if err != nil {
        panic("failed to connect database")
    }
    defer db.Close()
    // Create the table...
    // Read the doc at: http://doc.gorm.io/database.html#migration -> sec: Create Table
    db.CreateTable(&Profile{})

    var profile Profile
    db.Debug().Where(Profile{Email: "user@domain.com"}).Assign(Profile{LastLogin: time.Now()}).FirstOrCreate(&profile)
}

输出:

[2018-09-25 09:47:35]  [0.18ms]  INSERT INTO "profiles" ("created_at","updated_at","deleted_at","email","last_login") VALUES ('2018-09-25 09:47:35','2018-09-25 09:47:35',NULL,'user@domain.com','2018-09-25 09:47:35')
[1 rows affected or returned ]

希望这有帮助:)

关于go - 如何正确使用 FirstOrCreate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52486334/

相关文章:

mongodb - 如何使用 mgo 搜索空 _id

http - Golang,发送OCSP请求返回

mysql - 使用 golang 将数组中的行批量插入到 SQL Server

Golang - 在 http 结构中存储 userID

postgresql - go-gorm postgres 方言 : managing structs for jsonb insert and find to properly use json tags

string - 在 Golang 中将 []interface 转换为 []string

GO GORM .Related() 构造不适用于非默认主键名称。

sql - Gorm 属于不返回关系

乱码 : Join with changeable 'where' conditions

go - 如何正确传递数据库引用以供事务使用