This document discusses the disadvantages of object-relational mappers (ORMs) and promotes using micro ORMs instead. It argues that ORMs introduce unnecessary abstraction and complexity, forcing developers to work around the ORM rather than having the ORM work for them. Micro ORMs like Dapper, ORMLite, Massive, PetaPoco, and Simple.Data are presented as alternatives that are closer to the metal and impose less overhead than traditional heavyweight ORMs. Code examples are provided to demonstrate basic data access tasks with each micro ORM.