Portman
Portman

Reputation: 31975

Is there an official ASP.NET MVC reference/example app?

I'm struggling to find a good reference application for ASP.NET MVC. By "reference", I specifically mean an application that flexes all of the framework's features in the Microsoft-sanctioned manner, such as:

The open source examples that are out there (CodeCampServer, SutekiShop) either add significantly to the base framework or don't use all of the baked-in features.

Upvotes: 6

Views: 2185

Answers (5)

Chris
Chris

Reputation: 6325

While this might be a little late to the show, I believe that the ASP.net team would like people to start using the MVC Music Store as the official mvc reference example. The Music Store application is using the Razor view engine with Entity Framework's code first approach (also demonstrates database first) along with examples of dependency injection, test driven development, jQuery integration and getting and using NuGet packages.

A second reference example seems to be more on the cutting edge of things and is provided by the Patterns and Practices people. This is called the Silk Project and takes advantage of the latest web standards like HTML5, CSS3 and ECMAScript 5 along with modern web technologies such as jQuery, Internet Explorer 9, and ASP.NET MVC3.

These together would probably show you the newest in ASP.net MVC development along with some pretty neat ideas and examples.

Upvotes: 0

Pete Maroun
Pete Maroun

Reputation: 2075

I would consider the Nerd Dinner MVC reference app: http://nerddinner.codeplex.com/ for people just starting

Upvotes: 0

LukeDuff
LukeDuff

Reputation: 2389

This isn't official but you could check out Kigg: http://www.codeplex.com/Kigg

It's a sizable Asp.net MVC Digg-clone with some decent code in it. Used on dotnetshoutout.com

Upvotes: 2

Gordon Bell
Gordon Bell

Reputation: 13633

Have you seen Rob Connery's MVC Storefront Webcast Series?

http://www.asp.net/learn/mvc-videos/#MVCStorefrontStarterKit

Source Code:

http://www.codeplex.com/mvcsamples/

Upvotes: 6

ajma
ajma

Reputation: 12206

I asked more or less the same question here: What are some projects which are examples of best practices for ASP.NET MVC?

As for official, the closest would be Rob Connery's which was mentioned.

Upvotes: 2

Related Questions