Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
well..it depends. if your model is simple enough, the controller can directly use the ORM (with added functions) as a model. adding another abstraction layer makes it more flexible, but it also makes it harder to understand and implement. – Karoly Horvath Jul 18 '12 at 20:27
tereško : I didn't readed this yet. Thanks for the link. – Jonathan Fleury Jul 18 '12 at 20:30
Did my post answer your questions? :) – halfer Jul 19 '12 at 13:48

marked as duplicate by tereško, PeeHaa 埽, j0k, Wesley Murch, Jason Sturges Jul 19 '12 at 1:49

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 2 down vote accepted

So, the Controler should not "talk" with Propel directly (the ORM) but through an intermediate layer (the Model).

There is probably a purist view that the database you're using could be swapped out tomorrow with an XML feed, or some other structured data source. However, the question is, do you need it? Bear in mind that it is perfectly possible to abstract your application out to so many degrees that its performance will plummet and no-one will use it :).

It is also worth bearing in mind that your controller will, in the course of talking to a database implementation of a model, do things like joins between tables. If you were to interface to an abstract model that was not a database, how would you do that with such an implementation? You could do it with XML feeds say, at a stretch, but you probably wouldn't want to.

So, unless you have a real need to deal with several different types of data source, then yes, your concrete implementation of a model (Propel as a database library) can go in the controller.

Take a look at the Propel version of the Jobeet tutorial for symfony 1.x if you want to see a code example. I recommend you work through them day by day, and if you want a hand, I've posted the first 10 days of code snapshots in a tarball in the forum. (There may be a tutorial for Symfony 2, but my guess is the learning curve for the dependency injection stuff is even higher than it was for the previous version - though don't be afraid to look into that!).

share|improve this answer
Most of the time I realize that I don't need a model to go in between. But sometimes I do, because when I have authors and ... customers registered as persons, I want to modify the author as it was a person and not "delve" through until I arrive at a person. The model should only provide me an author which (in OO) derives from a person so from my program's standpoint both are interchangable when seen as a person. So the model abstracts away from the data source, giving you "proper" OO principles such as inheritance. – sinni800 Jul 18 '12 at 22:55
I'm not sure I see the need to abstract away from the database in that particular case, @sinni800 - unless a person is stored in a table, and a customer comes from an XML feed? Since I presume they are both database tables, there is no need to "not know" they are tables; in your schema, just declare a 'customer' as a child table of 'person'. Propel offers several different inheritance approaches specifically for this requirement. – halfer Jul 18 '12 at 23:01
Yes, but they all stiffen you too much into relational databases. In relational databases theres no 1:1 relationships, there's only 1:n. And this is what propel offers to your program: Person.GetCustomers. CustomerS? A person can only be one customer. This is what the model does. Get you away from that and define it in a way where all possible sources can agree. – sinni800 Jul 18 '12 at 23:05
@sinni800 - I agree that Propel locks you into using a relational database, but that was the point of my post - there is no value in abstracting to an arbitrary data source unless it is really needed. I don't follow your point about their not being 1:1 relationships in relational databases - some of Propel's inheritance approaches explicitly use such a relationship (two tables with matching primary keys constitutes a 1:1). – halfer Jul 18 '12 at 23:10
Ah - the $Person->getCustomers() you refer to is the method that gets created in a 1:many relationship. But I'm pretty sure Propel offers a 1:1 as well, and if even if it doesn't, it can be added as custom code into a model class very easily. – halfer Jul 18 '12 at 23:11
show 1 more comment

Not the answer you're looking for? Browse other questions tagged or ask your own question.