MVC Controller Best Practices
Here are a few basic best practice guidelines to keep in mind when writing your controllers using the MVC pattern with ASP.NET MVC. Keep controllers "skinny, keep action methods small Your controller actions should be kept as small as possible, with business logic living in your models. "Fat Model, Skinny Controller" is the motto. Here is [...]