MVC.NET for the desktop - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T05:40:54Zhttp://stackoverflow.com/feeds/question/326839http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/326839/mvc-net-for-the-desktop3MVC.NET for the desktople dorfier2008-11-28T22:46:31Z2008-11-28T23:14:56Z
<p>Is there any reason that MVC isn't equally useful for desktop apps as for web apps? </p>
<p>What would be required to make an ASP.NET MVC directory tree implementable as a desktop app?</p>
http://stackoverflow.com/questions/326839/mvc-net-for-the-desktop/326858#3268581Answer by Israr Khan for MVC.NET for the desktopIsrar Khan2008-11-28T22:55:59Z2008-11-28T23:07:43Z<p>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. </p>
<p>When i develope, I always(unless other instructed) use the following model/structure, also in applications:</p>
<p>GUI(Web, Winform, whatever) ->
Business logic ->
Data layer ->
And also with an underlying "Model"</p>
<p>... 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.</p>
<p>Another thing that could be done, is to create the data/businesslayers as web-services...</p>
<p>I think this aproach would qualify as SOA. </p>
<p>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.</p>
http://stackoverflow.com/questions/326839/mvc-net-for-the-desktop/326860#3268600Answer by Brian Genisio for MVC.NET for the desktopBrian Genisio2008-11-28T22:56:33Z2008-11-28T22:56:33Z<p>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.</p>