9 ms·
Propel is completely different as of 1.6. It doesn't really use the "Criteria" objects any more. (which is probably what they're referring to) It's much simple
by SolarUpNote 15y ago
Propel is completely different as of 1.6. It doesn't really use the "Criteria" objects any more. (which is probably what they're referring to)
It's much simpler now:
articles = ArticleQuery->where(column = ?, val)->groupBy(column)->limit(10)->find()
I like it, but it's still very resource-heavy.