|
|
|
|
|
by weberc2
3291 days ago
|
|
We use SQLalchemy at work and I would rather write queries by hand. A lot of that is because the documentation is a huge pain, but also because the object composition isn't intuitive. I've built a profile query builder in Go and it was pretty straight forward; I'm confident I could build an ORM in a couple of weeks. |
|
keeping it all type safe ( not having the user cast interface{} to struct everywhere) and performant would be a challenge.