The fantastic ORM library for Golang, aims to be developer friendly
Go to file
Jinzhu 6c0ee2700a Allow to use Valuer with Eq expression, #3899 2020-12-30 10:42:13 +08:00
.github Fix feature request label 2020-10-19 11:49:03 +08:00
callbacks Create associations w/o nested transaction option 2020-12-18 13:25:52 +08:00
clause Allow to use Valuer with Eq expression, #3899 2020-12-30 10:42:13 +08:00
logger Recorder追踪函数trace在finish_api文件358行scan函数所在的371行被调用时,BeginAt 没有赋值,默认值0001-0:0:0导致追踪日志显示的sql耗时无限大. (#3657) 2020-10-22 14:09:09 +08:00
migrator Fix auto migrate field with customized field type, close https://github.com/go-gorm/mysql/issues/20 2020-12-23 17:31:47 +08:00
schema Compatible with with foreign key with ID suffix #3890 2020-12-28 18:20:55 +08:00
tests Fix SELECT with sql expression in some cases, close #3889 2020-12-28 10:40:30 +08:00
utils Support delete associations with Select when deleting 2020-09-10 21:46:18 +08:00
.gitignore Add clause, DB API, model definition 2020-01-29 19:22:44 +08:00
License Add MIT License file 2015-01-05 08:59:18 +08:00
README.md Add GormValuer interface support 2020-08-27 15:03:57 +08:00
association.go Add QueryFields mode when query many2many relations 2020-12-25 16:35:25 +08:00
callbacks.go Add detailed error information when missing table name 2020-09-29 15:43:31 +08:00
chainable_api.go Fix SELECT with sql expression in some cases, close #3889 2020-12-28 10:40:30 +08:00
errors.go Add DryRunModeUnsupported Error for Row/Rows 2020-09-18 21:35:46 +08:00
finisher_api.go Add DisableNestedTransaction support 2020-12-16 19:33:35 +08:00
go.mod Refactor tests files 2020-06-02 10:50:38 +08:00
go.sum Add go.sum 2020-06-06 14:28:59 +08:00
gorm.go Add DisableNestedTransaction support 2020-12-16 19:33:35 +08:00
interfaces.go Add GormValuer interface support 2020-08-27 15:03:57 +08:00
migrator.go Use NewDB to replace WithConditions for Session 2020-11-17 16:28:37 +08:00
model.go Fix typo 2020-06-09 12:00:43 +08:00
prepare_stmt.go Use transaction's conn when preparing statement 2020-12-14 18:31:18 +08:00
scan.go fix: scan more base type and sql.NullXXX (#3813) 2020-12-02 14:00:16 +08:00
soft_delete.go populate the DeletedAt field when soft delete, fix #3855 2020-12-15 10:39:20 +08:00
statement.go Fix gorm.Expr with SubQuery, fix #3857 2020-12-15 15:50:35 +08:00
statement_test.go Spelling fix for "condtion" -> "condition" (#3042) 2020-06-08 11:38:51 +08:00

README.md

GORM

The fantastic ORM library for Golang, aims to be developer friendly.

go report card test status Join the chat at https://gitter.im/jinzhu/gorm Open Collective Backer Open Collective Sponsor MIT license Go.Dev reference

Overview

  • Full-Featured ORM
  • Associations (Has One, Has Many, Belongs To, Many To Many, Polymorphism, Single-table inheritance)
  • Hooks (Before/After Create/Save/Update/Delete/Find)
  • Eager loading with Preload, Joins
  • Transactions, Nested Transactions, Save Point, RollbackTo to Saved Point
  • Context, Prepared Statment Mode, DryRun Mode
  • Batch Insert, FindInBatches, Find To Map
  • SQL Builder, Upsert, Locking, Optimizer/Index/Comment Hints, NamedArg, Search/Update/Create with SQL Expr
  • Composite Primary Key
  • Auto Migrations
  • Logger
  • Extendable, flexible plugin API: Database Resolver (Multiple Databases, Read/Write Splitting) / Prometheus…
  • Every feature comes with tests
  • Developer Friendly

Getting Started

Contributing

You can help to deliver a better GORM, check out things you can do

License

© Jinzhu, 2013~time.Now

Released under the MIT License