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

    AutoMigrate Migrator 接口 当前数据库 表 列 约束 索引 约束 其他迁移工具 AutoMigrate AutoMigrate 用于自动迁移您的 schema,保持您的 schema 是最新的。 注意: AutoMigrate 会创建表、缺失的外键、约束、列和索引。 如果大小、精度、是否为空可以更改,则 Aut...
  • Go

    Go 写入数据 安装 连接数据库 数据模型 低层级 API 创建行数据 插入数据 流式插入 高层级 API 创建行数据 插入数据 流式插入 更多示例 Ingester 库参考 查询数据 推荐的查询库 安装 连接数据库 Raw SQL 查询库参考 Go GreptimeDB 使用不同的客户端库来写入和查询数据。 你...
  • Belongs To

    Belongs To 重写外键 重写引用 Belongs to 的 CRUD 预加载 外键约束 Belongs To belongs to 会与另一个模型建立了一对一的连接。 这种模型的每一个实例都“属于”另一个模型的一个实例。 例如,您的应用包含 user 和 company,并且每个 user 能且只能被分配给一个 company。下...
  • Raw SQL & SQL Builder

    Raw SQL Named Argument DryRun Mode ToSQL Row & Rows Scan *sql.Rows into struct Connection Advanced Clauses Clause Builder Clause Options StatementModifier Raw SQL ...
  • Hooks

    Object Life Cycle Hooks Creating an object Updating an object Deleting an object Querying an object Modify current operation Object Life Cycle Hooks are functions that are...
  • Has Many

    Has Many Declare Retrieve Override Foreign Key Override References Polymorphism Association CRUD with Has Many Eager Loading Self-Referential Has Many FOREIGN KEY Constrai...
  • 迁移

    AutoMigrate Migrator 接口 当前数据库 表 列 Views Constraints Indexes 约束 其他迁移工具 AutoMigrate AutoMigrate 用于自动迁移您的 schema,保持您的 schema 是最新的。 注意: AutoMigrate 会创建表、缺失的外键、约束、列和索引。 如...
  • 概述

    GORM 指南 特性 安装 快速入门 GORM 指南 The fantastic ORM library for Golang aims to be developer friendly. 特性 全功能 ORM 关联 (Has One,Has Many,Belongs To,Many To Many,多态,单表继承) Create,Sa...
  • 贡献

    Help others to know GORM Documentation and Writing Translate this site Program Donations One-time Donations Recurring Donations Sponsors Backers You can help to deliver a...
  • 约定

    使用 ID 作为主键 复数表名 TableName 临时指定表名 命名策略 列名 时间戳追踪 CreatedAt UpdatedAt 使用 ID 作为主键 默认情况下,GORM 会使用 ID 作为表的主键。 type User struct {   ID   string // 默认情况下,名为 `ID` 的...