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

    Save All Fields Update single column Updates multiple columns Update Selected Fields Update Hooks Batch Updates Block Global Updates Updated Records Count Advanced Update w...
  • 概述

    特性 安装 快速入门 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...
  • 链式操作

    Method Categories Chain Methods Finisher Methods New Session Methods Reusability and Safety Example of Unsafe Reuse 安全再利用的例子 Examples for Clarity GORM 的方法链功能可实现平滑流畅的编码风格。 ...
  • Serializer

    Register Serializer Customized Serializer Type Serializer is an extensible interface that allows to customize how to serialize and deserialize data with database. GORM provides...
  • ChangeLog

    v2.0 - 2020.08 v1.0 - 2016.04 v2.0 - 2020.08 GORM 2.0 is a rewrite from scratch, it introduces some incompatible-API change and many improvements Performance Improvements Mod...
  • 05-Database

    1531 2018-11-30 《Go Mega 手册》
    05-Database 数据库及ORM选择 数据库模型 初始化数据库数据 完善view Links 05-Database 本章的主题是重中之重!大多数应用都需要持久化存储数据,并高效地执行的增删查改的操作,数据库 为此而生。 我们将第一次引入第三方库 Gorm 来帮助我们实现 ORM 本章的GitHub链接为: Source , D...
  • Prometheus

    Prometheus 用法 用户自定义指标 MySQL Prometheus GORM 提供了 Prometheus 插件来收集 DBStats 和用户自定义指标 https://github.com/go-gorm/prometheus 用法 import ( "gorm.io/gorm" "gorm.io/dri...
  • Prometheus

    用法 用户自定义指标 MySQL GORM 提供了 Prometheus 插件来收集 DBStats 和用户自定义指标 https://github.com/go-gorm/prometheus 用法 import ( "gorm.io/gorm" "gorm.io/driver/sqlite" "gor...
  • Composite Primary Key

    Set multiple fields as primary key creates composite primary key, for example: type Product struct { ID string `gorm:"primaryKey"` LanguageCode strin...
  • 设置

    Set / Get InstanceSet / InstanceGet GORM 提供了 Set , Get , InstanceSet , InstanceGet 方法来允许用户传值给 勾子 或其他方法 Gorm 中有一些特性用到了这种机制,如迁移表格时传递表格选项。 // 创建表时添加表后缀 db . Set ( "gorm:table...