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

    Logger Log Levels Debug Customize Logger Logger Gorm has a default logger implementation , it will print Slow SQL and happening errors by default The logger accepts few opti...
  • 编写驱动

    Compatibility with MySQL or Postgres Dialects Implementing the Dialector Nested Transaction Support Custom Clause Builders GORM offers built-in support for popular databases l...
  • 预加载

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

    链式方法 Finisher Method 新建会话模式 线程安全">线程安全 GORM 允许进行链式操作,所以您可以像这样写代码: db . Where ( "name = ?" , "jinzhu" ). Where ( "age = ?" , 18 ). First (& user ) GORM 中有三种类型的方法: 链式方...
  • 概述

    特性 安装 快速入门 The fantastic ORM library for Golang aims to be developer friendly. 特性 全功能 ORM 关联 (Has One,Has Many,Belongs To,Many To Many,多态,单表继承) Create,Save,Update,Delete,Fin...
  • 高级查询

    智能选择字段 Locking (FOR UPDATE) 子查询 From 子查询 Group 条件 带多个列的 In 命名参数 Find 至 map FirstOrInit FirstOrCreate 优化器、索引提示 迭代 FindInBatches 查询钩子 Pluck Scope Count 智能选择字段 GORM...
  • 编写插件

    Callbacks 注册 Callback 删除 Callback 替换 Callback 注册带顺序的 Callback 预定义 Callback 插件 Callbacks GORM 自身也是基于 Callbacks 的,包括 Create 、Query 、Update 、Delete 、Row 、Raw 。此外,您也完全可以根据自己的...
  • Contribute

    Help others to know GORM Documentation and Writing Translate this site Program Donations You can help to deliver a better GORM! there are many things that you can do: Help...
  • Has One

    Has One 重写外键 重写引用 多态关联 Has One 的 CURD 预加载 自引用 Has One 外键约束 Has One has one 与另一个模型建立一对一的关联,但它和一对一关系有些许不同。 这种关联表明一个模型的每个实例都包含或拥有另一个模型的一个实例。 例如,您的应用包含 user 和 credit card ...
  • Has One

    Has One Has One 重写外键 重写引用 多态关联 Has One 的 CURD 预加载 自引用 Has One 外键约束 Has One Has One has one 与另一个模型建立一对一的关联,但它和一对一关系有些许不同。 这种关联表明一个模型的每个实例都包含或拥有另一个模型的一个实例。 例如,您的应用包含 ...