书栈网 · BookStack 本次搜索耗时 0.023 秒,为您找到 718 个相关结果.
  • 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 ...
  • Community

    Ask Chat Links Videos Open Sources Contribute to this page Ask How do I ask a good question? Stackoverflow - https://stackoverflow.com/questions/tagged/go-gorm Github ...
  • 社区

    Ask Chat Links Videos Open Sources Contribute to this page Ask How do I ask a good question? Stackoverflow - https://stackoverflow.com/questions/tagged/go-gorm Github ...
  • 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...
  • 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...
  • Create

    Create Record Create Record With Selected Fields Batch Insert Create Hooks Create From Map Create From SQL Expression/Context Valuer Advanced Create With Associations Defaul...
  • 迁移

    AutoMigrate Migrator 接口 当前数据库 表 列 Views Constraints Indexes 约束 Atlas Integration Other Migration Tools AutoMigrate AutoMigrate 用于自动迁移您的 schema,保持您的 schema 是最新的。 注意: ...
  • Database Resolver

    用法 Automatic connection switching Read/Write Splitting Manual connection switching Transaction 负载均衡 连接池 DBResolver 为 GORM 提供了多个数据库支持,支持以下功能: 支持多个 sources、replicas 读写分离 根据...
  • 预加载

    预加载 Joins 预加载 预加载全部 带条件的预加载 自定义预加载 SQL 嵌套预加载 预加载 GORM 允许在 Preload 的其它 SQL 中直接加载关系,例如: type User struct { gorm . Model Username string Orders [] Order ...
  • 钩子

    对象生命周期 Hook 创建对象 更新对象 删除对象 查询对象 修改当前操作 对象生命周期 Hook 是在创建、查询、更新、删除等操作之前、之后调用的函数。 如果您已经为模型定义了指定的方法,它会在创建、更新、查询、删除时自动被调用。如果任何回调返回错误,GORM 将停止后续的操作并回滚事务。 钩子方法的函数签名应该是 func(*g...