github.com/systematiccaos/gorm@v1.22.6/README.md (about) 1 # GORM 2 3 The fantastic ORM library for Golang, aims to be developer friendly. 4 5 [](https://goreportcard.com/report/github.com/go-gorm/gorm) 6 [](https://github.com/go-gorm/gorm/actions) 7 [](https://gitter.im/jinzhu/gorm?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) 8 [](https://opencollective.com/gorm) 9 [](https://opencollective.com/gorm) 10 [](https://opensource.org/licenses/MIT) 11 [](https://pkg.go.dev/github.com/systematiccaos/gorm?tab=doc) 12 13 ## Overview 14 15 * Full-Featured ORM 16 * Associations (Has One, Has Many, Belongs To, Many To Many, Polymorphism, Single-table inheritance) 17 * Hooks (Before/After Create/Save/Update/Delete/Find) 18 * Eager loading with `Preload`, `Joins` 19 * Transactions, Nested Transactions, Save Point, RollbackTo to Saved Point 20 * Context, Prepared Statement Mode, DryRun Mode 21 * Batch Insert, FindInBatches, Find To Map 22 * SQL Builder, Upsert, Locking, Optimizer/Index/Comment Hints, NamedArg, Search/Update/Create with SQL Expr 23 * Composite Primary Key 24 * Auto Migrations 25 * Logger 26 * Extendable, flexible plugin API: Database Resolver (Multiple Databases, Read/Write Splitting) / Prometheus… 27 * Every feature comes with tests 28 * Developer Friendly 29 30 ## Getting Started 31 32 * GORM Guides [https://gorm.io](https://gorm.io) 33 34 ## Contributing 35 36 [You can help to deliver a better GORM, check out things you can do](https://gorm.io/contribute.html) 37 38 ## License 39 40 © Jinzhu, 2013~time.Now 41 42 Released under the [MIT License](https://github.com/go-gorm/gorm/blob/master/License)