To ORM or not to ORM

1 · Eli Bendersky · May 7, 2019, 1:47 p.m.
I've been enjoying using Go's database/sql package for working with databases. Recently, some mentions of gorm piqued my curiosity about using ORMs in Go vs. using database/sql directly. Having had some mixed experiences with ORMs in the past, I decided to start with a practical experiment by writing …...