Tagged Questions
9
votes
2answers
7k views
Use-cases for node.js and c#
I do quite a bit of ASP.NET work (C#, MVC), but most of it is typical web development. I do Restful architecture using CRUD repositories. Most of my clients don't have a lot of advanced requirements ...
5
votes
3answers
3k views
MVVM or MVC? Want to use the same set of classes for WPF and ASP.NET
I am a newbie in terms of Design Patterns. I just started learning MVC when I am hearing a new buzz, MVVM.
I want to learn the insights of both of these by redesigning an old inventory and invoicing ...
4
votes
4answers
476 views
When developing a MVC web application should views or models be created first?
I have to build a new application from scratch, so I want to implement it using MVC3 and try to follow general best practices as closely as possible. However, I'm developing it as a one man army. ...
2
votes
2answers
488 views
MVC : Does Code to save data in cache or session belongs in controller?
I'm a bit confused if saving the information to session code below, belongs in the controller action as shown below or should it be part of my Model?
I would add that I have other controller methods ...
1
vote
3answers
881 views
Models should match table structure, Viewmodels match how the data need to be displayed?
I have a database table with many columns, that I want to display over several pages, similar to a turbo tax style information collection form. With only 1 or 2 items per page.
Is it right to ...
0
votes
1answer
597 views
Actions and Controllers managing strategy in MVC apps
Can anyone name any usefull strategy/architectural pattern for allocating actions between different controllers when using MVC pattern for developing web application?
I am now developing web app ...