vote up 3 vote down star
3

Is there any reason that MVC isn't equally useful for desktop apps as for web apps?

What would be required to make an ASP.NET MVC directory tree implementable as a desktop app?

flag

2 Answers

vote up 1 vote down

I've always thought of the term MVC as the same as a n-layer application - so correct me if I'm wrong here folks.

When i develope, I always(unless other instructed) use the following model/structure, also in applications:

GUI(Web, Winform, whatever) -> Business logic -> Data layer -> And also with an underlying "Model"

... Which is a sort of MVC - So yes, it is usefull for desktop apps also. The main advantage with this, is that you can develope web, win and mobile(++) applications based on the same code.

Another thing that could be done, is to create the data/businesslayers as web-services...

I think this aproach would qualify as SOA.

EDIT: As a note, the four levels of applications are created as seperate projects - and then used as adding reference to either the project, or the DLL, or from the GAC(or wherever you like.....) :) Thus, the need for a directory structure is not needed.

link|flag
vote up 0 vote down

Hmmm... well, your view can be rendered as anything... HTML, XML, etc. So, why not XAML? I wonder if you can get your WPF or Silverlight app to work in the MVC framework this way... that is, not requiring a web server to run.

link|flag
Ohh... Nice points Brian... Genisio... From the word "Genesis" ? ;) – Israr Khan Nov 28 '08 at 23:08
(note to others: at the time the comment was posted - Brian Genisio had "666" points ;) – Israr Khan Nov 28 '08 at 23:09

Your Answer

Get an OpenID
or

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