SarahBishop's comments

SarahBishop | 8 years ago | on: Ask HN: Are ORMs overkill for using SQL databases?

ORMs are good for only one thing, saving your models to the database and retrieving your models from the database for display on a single page.

Once you start using them for other things like generating lists of objects, pagination then you start hitting issues. In fact here you are better off using straight SQL and PDO to return an array of data that you format into HTML for display. https://19216811wiki.wordpress.com/

page 1