Page 2 of 2
Re: MVC model
Posted: Thu Mar 06, 2008 10:11 am
by Scrumpy.Gums
hawkenterprises wrote:I just have a problem with people talking that don't have any merit or idea what they are talking about.
Well, often the best way to learn is by making mistakes. Learning through direct action is surely better than taking someone else's word for it. At least you can then form your own opinions.
I really don't see the problem in asking questions about something you don't know.
Re: MVC model
Posted: Thu Mar 06, 2008 1:08 pm
by Christopher
One pattern that may help give you insight into the Model is the DomainModel pattern. It is another deceptively simple pattern that has deep meaning. You probably implement DomainModel to some extent already, but reading about it can give you insight into the Model in MVC because the Model is typically an object in a DomainModel. That also helps clarify the big separation in MVC which is typically between the DomainModel and the Presentation layers. The second smaller separation in MVC is within the Presentation layer between the View and Controller.