gorm/README.md

47 lines
1.4 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)
[![wercker status](https://app.wercker.com/status/0cb7bb1039e21b74f8274941428e0921/s/master "wercker status")](https://app.wercker.com/project/bykey/0cb7bb1039e21b74f8274941428e0921)
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-03-07 16:18:48 +03:00
* GORM Guides [jinzhu.github.com/gorm](https://jinzhu.github.io/gorm)
2016-02-29 17:06:15 +03:00
## Upgrading To V1.0
2016-03-07 16:18:48 +03:00
* [CHANGELOG](https://jinzhu.github.io/gorm/changelog.html)
2013-10-26 11:18:44 +04:00
# 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
2015-11-16 05:59:24 +03:00
# Contributors
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).