views:

597

answers:

8

I would like to get book(s) that will really give me a complete view of modern ASP.NET development using C#, TDD, ASP.NET MVC, DDD and Design Patterns such as the Repository pattern. I'm very competent with C# and ASP.NET MVC, but want to fill in the gaps.

If you've had a good experience with a book or two that covers these topics could you please share them?

+2  A: 

Here are a few that I would recommend:

tvanfosson
+3  A: 

Guess the scope of topics you have asked is vast to be covered in a single book

Try this One Agile Principles, Patterns, and Practices in C# By Martin and Martin

Book talks mostly about Design Principles, Design Patters, UML Diagrams, Documentation, Refactoring. It doesn't cover ASP.NET and MVC though. YOu need to refer some other books for those.

noob.spt
+4  A: 

I'm currently interested in how to architecture good .NET applications and I'm reading or have currently read some of the following books:

Those two Microsoft books really explain how to design .NET applications with high testability using Inversion Of Control and such.

And to be clear, yes they all use design patterns common in TDD, DDD, Dependency Injection, ans so on...

Sander Versluys
+5  A: 

"Domain Driven Design: Tackling Complexity in the Heart of Software" by Eric Evans.

Arnis L.
+1 This should be your key reference for DDD. But it will help a lot to have a working knowledge of the patterns described in Patterns of Enterprise Application Architecture first.
dthrasher
+1  A: 

For your needs I would recommend starting with:

Like the title says; it's basically a book on how to to DDD and TDD in a .NET environment.

Per Noalt
+4  A: 

Try Applying Domain Driven Design and Patterns By Jimmy Nillson. It covers DDD and it's patterns in .NET

Mike Two
It's really a great book for someone with the questioner's background.I helped proofreading the book, and gave it well deserved praise on its praise pages.Recently, I had three collegues buy it, and no complaints so far ;-)
Martin R-L
ADDDP gives some nice examples, and I liked that it took me through the logic behind the design decisions. But I felt at times the writing was a too conversational. It felt like the author was thinking out loud.
dthrasher
+2  A: 

For TDD try xUnit Test Patterns.

The best book I have read recently for filling in the gaps is C# in depth by Jon Skeet. It wasn't until reading this book that I realised how many gaps I had in my knowledge of C#.

Keith Bloom
+3  A: 

Pro ASP.NET MVC Framework by Steve Sanderson includes the obvious ASP.NET MVC topic with C# as well as TDD, the Repository pattern, and domain modeling. Good overview of all of these topics in one book.

For deeper coverage of DDD, i agree with Arnis L to get the bible ("Domain Driven Design: Tackling Complexity in the Heart of Software" ) by Eric Evans, and for a .NET specific view, I agree with Per Noalt on Applying Domain-Driven Design and Patterns: With Examples in C# and .NET.

Pro ASP.NET MVC Framework

Chris Melinn