What is the advantage to using model relationships vs standard joins.
When using a model relationship a seperate query is is executed on the driver. In a large scale application this will create a bottle next as M^R where M is equal to the model and R represents the relationships.
The only advantage I can seem to come up with is cleaner code and ease of model access.
What am i missing?