|
|
|
|
|
by ericclemmons
4870 days ago
|
|
My company has a very large application that still utilizes an ORM (Doctrine). The primary benefit is the lazy (proxy) loading of entities and mapping data onto complex graphs, not to mention updates that span multiple entities in a single transaction. Performance-wise, we've reduced lazy loading via eager selects, result caches, and one instance of mapping SQl results back to an object. All in all, it feels better working with objects than it does with raw data, and it is very reliable in my experience. |
|