good morning!!!!

Skip to content
Snippets Groups Projects
Commit 8d2c35ee authored by José Carlos Nieto's avatar José Carlos Nieto
Browse files

Clarification on ORM word.

parent c3900229
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,9 @@ See the project page, recipes and user documentation at [upper.io/db][1].
## Is this an ORM?
`upper.io/db` is not an ORM, but you may not need one at all:
`upper.io/db` is not an ORM in the sense that it does not tell you how to
design your software or how to validate your data, instead it only focuses on
being a tool that deals with common operations on different databases:
```go
// This code works the same for all supported databases.
......@@ -19,6 +21,9 @@ res = col.Find(db.Cond{"name": "Max"}).Limit(10).Sort("-last_name")
err = res.All(&people)
```
In strict sense `upper.io/db` could be considered a really basic non-magical
ORM that rather stays out of the way.
## Supported databases
`upper.io/db` attempts to provide full compatiblity for [CRUD][2] operations
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment