Hacker News new | ask | show | jobs
by freeman478 2996 days ago
I like using what is sometimes called Micro-ORM. Basically it does the mapping of query results to objects and sometimes has a basic query builder but you mostly use raw sql.

Dapper (https://github.com/StackExchange/Dapper) is a great one for .NET.

1 comments

JDBCTemplate would probably also qualify, it can be useful especially if you use Spring already. JDBI can be an alternative if you don't use Spring.