Hacker News new | ask | show | jobs
by valevk 4431 days ago
It's not that you are not supposed to use ORMs in Go. ORM take away control from you and your code. ORMs are a blackbox.

I prefer writing plain SQL when dealing with databases. And in Go, this can be done with a few lines of code [1].

[1] http://stackoverflow.com/questions/11353679/whats-the-recomm...