What is the best book for ASP.Net MVC anyone suggest best resources to learn ASP.Net MVC
I really like Pro ASP.NET MVC Framework by Steven Sanderson.
The book gives a quick introduction into ASP.NET MVC, so that you can start coding and experimenting after a short time. Each part of ASP.NET MVC is then discussed in detail in the later chapters of the book, so once you "got" the basics you can move on to the details. I really liked that approach.
Also, if you're interested in Test-Driven Development (TDD), the book covers that very nicely. Although, if you're only interested in MVC, you can easily skip the TDD parts (they are very well separated from the normal book text).
I suggest ASP.NET MVC IN Action
,
Also If you are a beginner, you can take a look at Nerd Dinner Tutorial PDF
, which provides very good basics in MVC.
Thanks
Here is a list of reviews of asp.net mvc book by David Hayden, and I think it's very helpful.
There are a lot of books that cover the basics of MVC but are there any "advanced" books? Especially about this repository patern I noticed in the Nerddinner example, how to do TDD with MVC or when to write your own basecontrollers that you inherit from.