The fantastic ORM library for Golang, aims to be developer friendly
Go to file
Jinzhu 1ddc8e3984 Update README 2013-10-26 15:18:44 +08:00
Guardfile Initialize the tests 2013-10-25 22:31:56 +08:00
README.md Update README 2013-10-26 15:18:44 +08:00
main.go Add more dummy code for orm.go 2013-10-26 07:14:57 +08:00
orm.go When search one record, should return error when nothing found 2013-10-26 15:02:14 +08:00
orm_test.go When search one record, should return error when nothing found 2013-10-26 15:02:14 +08:00
sql.go When search one record, should return error when nothing found 2013-10-26 15:02:14 +08:00
utils.go Implement method interface to table name 2013-10-26 14:42:14 +08:00

README.md

GORM

Yet Another ORM library for Go, aims for developer friendly

TODO

  • Perimary key
  • Create table
  • Save and fill the record
  • Update
  • Delete
  • Complex where query (= / > / < / <> / in)
  • Order
  • Limit
  • Select
  • Offset
  • Or query
  • Not query
  • Even more complex where query (with map or struct)
  • ORM.Errors
  • Better First method (First(&user, primary_key))
  • Soft Delete
  • After/Before Save/Update/Create/Delete
  • FindOrInitialize / FindOrCreate
  • Exec run SQL directly
  • SQL Log
  • Auto Migration
  • Index, Unique, Valiations

Author

Jinzhu