|
|
|
|
|
by xyzzy_plugh
1455 days ago
|
|
As the post you're replying to describes, magic is antithetical to Go idioms. An ORM is basically database-as-magic, every ORM in Go is just a nightmare. Something like sqlc[0] is leagues better than any ORM in terms of simplicity, complexity and maintainability. 0: https://github.com/kyleconroy/sqlc |
|