I'm looking at the dependency graph of the upcoming 2.0.
And it seems that the ORM is now a required dependency.
In the next project I'm trying to avoid an ORM, because:
- you soon find out that it hinders your development as you start to write most queries either in pure SQL and smashing your head by mapping dependencies by hand.
- you usually never ever change the db, so the DQL has no point
I'm looking at the dependency graph of the upcoming 2.0.
And it seems that the ORM is now a required dependency.
In the next project I'm trying to avoid an ORM, because: