Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Scala Play! Using anorm or ORM

It seems that all the sample applications provided by the Play! framework make use of anorm for persistence. What is the reason for choosing anorm over an ORM? If you are using an ORM, what are you using and why?

like image 358
Brent Lemons Avatar asked Jun 08 '12 16:06

Brent Lemons


1 Answers

anorm is a meta acronym for Anorm is Not an Object Relational Mapper, hence it is not an ORM.

And therein lies the answer--it's for those of us who want to be hands-on with their SQL queries.

like image 102
opyate Avatar answered Sep 22 '22 06:09

opyate