书栈网 · BookStack 本次搜索耗时 0.024 秒,为您找到 718 个相关结果.
  • 约束

    约束 检查约束 索引约束 外键约束 约束 GORM 允许通过标签创建数据库约束,约束会在通过 GORM 进行 AutoMigrate 或创建数据表 时被创建。 检查约束 通过 check 标签创建检查约束 type UserIndex struct { Name string `gorm:"check:n...
  • Session

    DryRun PrepareStmt NewDB Initialized Skip Hooks DisableNestedTransaction AllowGlobalUpdate FullSaveAssociations Context Logger NowFunc Debug QueryFields CreateBatchSiz...
  • Session

    DryRun PrepareStmt NewDB Initialized Skip Hooks DisableNestedTransaction AllowGlobalUpdate FullSaveAssociations Context Logger NowFunc Debug QueryFields CreateBatchSiz...
  • Many To Many

    Many To Many 反向引用 重写外键 自引用 Many2Many 预加载 Many2Many 的 CURD 自定义连接表 外键约束 复合外键 Many To Many Many to Many 会在两个 model 中添加一张连接表。 例如,您的应用包含了 user 和 language,且一个 user 可以说多种 lan...
  • Transactions

    Disable Default Transaction Transaction Nested Transactions Control the transaction manually A Specific Example SavePoint, RollbackTo Disable Default Transaction GORM perfo...
  • Has Many

    1. Has Many 1.1. 一对多 1.2. 外键 1.3. 外键关联 1.4. 多态关联 1.5. 使用一对多 1. Has Many 1.1. 一对多 has many 关联就是创建和另一个模型的一对多关系, 不像 has one ,所有者可以拥有0个或多个模型实例。 例如,如果你的应用包含用户和信用卡, 并且每一个用...
  • 创建

    创建记录 用指定的字段创建记录 批量插入 创建钩子 根据 Map 创建 使用 SQL 表达式、Context Valuer 创建记录 高级选项 关联创建 默认值 Upsert 及冲突 创建记录 user := User { Name : "Jinzhu" , Age : 18 , Birthday : tim...
  • Constraints

    CHECK Constraint Index Constraint Foreign Key Constraint GORM allows create database constraints with tag, constraints will be created when AutoMigrate or CreateTable with GORM...
  • 3. Models

    1298 2017-12-16 《gorm文档(英文)》
    Models Model Definition Conventions gorm.Model struct Table name is the pluralized version of struct name Change default tablenames Column name is the snake case of field’s na...
  • 2. Database

    1371 2017-12-16 《gorm文档(英文)》
    Database Connecting to a database MySQL PostgreSQL Sqlite3 SQL Server Write Dialect for unsupported databases Migration Auto Migration Has Table Create Table Drop table ...