|
|
|
|
|
by xienze
844 days ago
|
|
I think a lot of times people say “ORM” when they mean “Hibernate” or some other ORM implementation. In your codebase, do you stick raw SQL all over the place and iterate over rows exclusively? Or instead, as a convenience, do you write helpers that map objects into SQL statements and map result rows into objects? If so, congratulations, you’re using an ORM. The concept of ORMs is not bad. It’s a logical thing to do. Some ORM _implementations_ have some very serious issues, but that does not make ORMs as a whole bad. |
|