FSou1
FSou1

Reputation: 1941

Design Patterns in ASP .NET MVC Application

Can somebody give me a link to article or name of book, where i can find something about Design Patterns in ASP .NET MVC applications? Sry if i asking for something stupid, i'm not expert in this.

Upvotes: 3

Views: 5555

Answers (4)

Hector Correa
Hector Correa

Reputation: 26690

Dino Esposito and Andrea Saltarello have a very good explanation and demystification of the MVC pattern on their book "Microsoft .NET: Architecting Applications for the Enterprise". I've got a review of the MVC chapter of their book in my blog

Upvotes: 0

Sean Hunter
Sean Hunter

Reputation: 1051

The official Microsoft website is actually very good for this. http://www.asp.net/mvc. I actually used Rob Conery's MVC store front video to get started (http://www.asp.net/mvc/videos/aspnet-mvc-storefront-part-1-architectural-discussion-and-overview). He goes through the repository pattern and a few other good practices for MVC, it's a little outdated now in some areas as it is written in MVC 1 but a lot of the points still hold.

Upvotes: 2

Puneet
Puneet

Reputation: 1014

MVC itself is a design pattern. You can use several combinations of other design patterns in your application to suit your particular needs.

If you want a read an excellent book on ASP.NET MVC then I would recommend Steven Sanderson's book - http://www.amazon.co.uk/Pro-ASP-NET-Framework-Steven-Sanderson/dp/1430210079

Note: This book is available for MVC2 as well, but I have not read that one. This book uses several good concepts that will help you create a production ASP.NET MVC application including TDD, repository pattern etc

Upvotes: 3

Rob Stevenson-Leggett
Rob Stevenson-Leggett

Reputation: 35689

I'd recommend Steven Sanderson's book for how to use MVC (probably worth waiting for the MVC 3 version which is due soon)

Otherwise I'd look at general design patterns books like Head First Design Patterns as these still apply within MVC.

Do you have a more specific question around a particular design pattern?

Upvotes: 4

Related Questions