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

    1444 2020-06-11 《Go语言中文文档》
    1. Belongs To 1.1. 属于 1.2. 外键 1.3. 关联外键 1.4. 使用属于 1. Belongs To 1.1. 属于 belongs to 关联建立一个和另一个模型的一对一连接,使得模型声明每个实例都「属于」另一个模型的一个实例 。 例如,如果你的应用包含了用户和用户资料, 并且每一个用户资料只分配给一个...
  • Belongs To

    Belongs To Override Foreign Key Override References CRUD with Belongs To Eager Loading FOREIGN KEY Constraints Belongs To A belongs to association sets up a one-to-one con...
  • Belongs To

    Belongs To Override Foreign Key Override References CRUD with Belongs To Eager Loading FOREIGN KEY Constraints Belongs To A belongs to association sets up a one-to-one con...
  • 声明模型

    模型定义 约定 gorm.Model 高级选项 字段级权限控制 创建/更新时间追踪(纳秒、毫秒、秒、Time) 嵌入结构体 字段标签 关联标签 模型定义 模型是标准的 struct,由 Go 的基本数据类型、实现了 Scanner 和 Valuer 接口的自定义类型及其指针或别名组成 例如: type User struc...
  • 贡献

    Contribute to GORM Help others to know GORM Documentation and Writing Translate this site Program Donations Platinum Sponsors OpenCollective Sponsors Github Backers Patreo...
  • 1. 快速开始

    5001 2018-05-17 《GORM 1.0 中文文档》
    GORM 中文文档 概述 安装 升级到V1.0 快速开始 来源(书栈小编注) GORM 中文文档 http://gorm.book.jasperxu.com/ Golang写的,开发人员友好的ORM库。 概述 全功能ORM(几乎) 关联(包含一个,包含多个,属于,多对多,多种包含) Callbacks(创建/保存/更新/删除/查...
  • Method Chaining

    Chain Method Finisher Method New Session Method GORM allows method chaining, so you can write code like this: db . Where ( "name = ?" , "jinzhu" ). Where ( "age = ?" , 18 ...
  • 12.2 Configurations for Data Access

    12.2 Configurations for Data Access 12.2 Configurations for Data Access The table summarizes the configuration modules and the dependencies you should add to your build to enab...
  • Logger

    日志 日志级别 Debug 自定义 Logger 日志 Gorm 有一个 默认 logger 实现 ,默认情况下,它会打印慢 SQL 和错误 Logger 接受的选项不多,您可以在初始化时自定义它,例如: newLogger := logger . New ( log . New ( os . Stdout , "\r\n" ...
  • Many To Many

    Many To Many Back-Reference Declare Retrieve Override Foreign Key Self-Referential Many2Many Eager Loading CRUD with Many2Many Customize JoinTable FOREIGN KEY Constraints ...