gorm/README.md

52 lines
1.7 KiB
Markdown
Raw Normal View History

2013-10-25 12:24:29 +04:00
# GORM
2014-01-03 10:54:47 +04:00
The fantastic ORM library for Golang, aims to be developer friendly.
2013-10-25 12:24:29 +04:00
2016-03-07 16:18:48 +03:00
[![Join the chat at https://gitter.im/jinzhu/gorm](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/jinzhu/gorm?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2018-01-31 13:16:20 +03:00
[![go report card](https://goreportcard.com/badge/github.com/jinzhu/gorm "go report card")](https://goreportcard.com/report/github.com/jinzhu/gorm)
2018-02-10 08:15:04 +03:00
[![wercker status](https://app.wercker.com/status/8596cace912c9947dd9c8542ecc8cb8b/s/master "wercker status")](https://app.wercker.com/project/byKey/8596cace912c9947dd9c8542ecc8cb8b)
2016-02-25 17:58:56 +03:00
[![GoDoc](https://godoc.org/github.com/jinzhu/gorm?status.svg)](https://godoc.org/github.com/jinzhu/gorm)
2013-10-28 06:09:44 +04:00
## Overview
2015-02-24 17:06:42 +03:00
* Full-Featured ORM (almost)
2016-03-07 16:18:48 +03:00
* Associations (Has One, Has Many, Belongs To, Many To Many, Polymorphism)
2015-02-24 17:06:42 +03:00
* Callbacks (Before/After Create/Save/Update/Delete/Find)
2015-02-11 14:27:58 +03:00
* Preloading (eager loading)
* Transactions
2016-03-07 16:18:48 +03:00
* Composite Primary Key
* SQL Builder
* Auto Migrations
* Logger
* Extendable, write Plugins based on GORM callbacks
2013-11-07 08:12:25 +04:00
* Every feature comes with tests
* Developer Friendly
2013-10-28 06:09:44 +04:00
2016-02-29 17:06:15 +03:00
## Getting Started
2016-05-04 16:13:15 +03:00
* GORM Guides [jinzhu.github.com/gorm](http://jinzhu.github.io/gorm)
2016-02-29 17:06:15 +03:00
## Upgrading To V1.0
2016-05-04 16:13:15 +03:00
* [CHANGELOG](http://jinzhu.github.io/gorm/changelog.html)
## Supporting the project
2018-01-31 13:22:30 +03:00
[![http://patreon.com/jinzhu](https://c5.patreon.com/external/logo/become_a_patron_button.png)](http://patreon.com/jinzhu)
## Author
2013-10-25 12:24:29 +04:00
2013-11-03 06:09:56 +04:00
**jinzhu**
2013-10-25 12:24:29 +04:00
2013-10-26 11:18:44 +04:00
* <http://github.com/jinzhu>
* <wosmvp@gmail.com>
* <http://twitter.com/zhangjinzhu>
2013-11-12 03:13:58 +04:00
## Contributors
2015-11-16 05:59:24 +03:00
https://github.com/jinzhu/gorm/graphs/contributors
2013-11-12 03:13:58 +04:00
## License
2015-01-05 03:58:26 +03:00
Released under the [MIT License](https://github.com/jinzhu/gorm/blob/master/License).