Possible Duplicate:
How should a model be structured in MVC?
I read a lot of material about MVC and ORM, but a lot of documentation on the Internet is confusing.
As I understand it, the ORM should not be the model as it should be completely abstracted from the database. But, in Propel, model classes are generated. For example, a table author could be updated this way:
$author = new Author();
$author->setFirstName('Jane');
$author->setLastName('Austen');
$author->save();
Seem to be used as a model to me. But, it is not abstracted enough as a Model object ( I presume) can be a database table but can also be an object composed from multiple tables or even data sources. The model should represent a real-world entity. So, the Controller should not "talk" with Propel directly (the ORM) but through an intermediate layer (the Model).
I cannot find any real-world example integrating Propel in an MVC structure and I'm pretty unsure of my "understanding" of the MVC architecture.
Could somebody confirm that the ORM shouldn't be the Model Layer and should not be called from the controller? If a good example could be provided, it would help me to refactoring my applications with better practices.
:)– halfer Jul 19 '12 at 13:48