Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Anyone please suggest a good design and architecture book for .Net.

Is there any book I can refer to which has case studies, examples, etc. so that I can update my knowledge well in this field?

In case it's not available for .Net, please suggest in Java also.

Thanks in advance Swapna MC

share
2  
I don't know if it's an exact duplicate, design patterns and architecture patterns are different enough. – Andy White Jun 4 '09 at 6:00
1  
Agreed...there are design patterns, and there is architecture. – jrista Jun 4 '09 at 6:03

locked by Kev Nov 3 '11 at 21:05

This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. This question and its answers are frozen and cannot be changed. More info: FAQ.

closed as not constructive by Kev Nov 3 '11 at 21:04

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

10 Answers

I would recommend this book: .NET: Architecting Applications for the Enterprise

Not a .net book, but the classic book here is Patterns of Enterprise Application Architecture

share
2  
+1 from me for .NET Architecting Applications for the Enterprise. I'm reading it now and it is pretty good. It is a good companion book for POEAA. – RichardOD Aug 12 '09 at 8:45
1  
These two books are the best place to start – Craig Schwarze Jan 3 '10 at 21:51

I would recommend start by reading the patterns & practices Application Architecture Guide 2.0 http://www.codeplex.com/AppArchGuide

share

Here's are a few good enterprise architecture books (based on Java, but the general concepts still apply):

A few of these patterns are a little old, but still useful to know.

If you're interested in WCF for a service-oriented architecture:

Or for framework design:

share
I would reconmend these too! – dbones Sep 16 '09 at 22:01

Architectural approaches can vary greatly depending on what you're trying to build. I.e.- Architecting a specific software's internal's, or architecting a distributed system, etc.

For a given software program's internals, I like Patterns of Enterprise Application Architecture as a good reference.

I have also used the SEDA architectural style for some high throughput event-driven applications. The SEDA homepage has the original paper and references to other projects using this style. You might have heard of the Java Open Source projects: MULE and Apache Camel.

Also check out Enterprise Integration Patterns, which is a great companion book to PoEAA. This one pretty much helps you architect the interconnection between distributed systems. Lots of tools in this area... from XMPP to AMQP, to MULE, to JMS, etc.

And I have to suggest reviewing the REST Architectural Style since it is important in today's web software. There is a lot of material about REST, but primarily read (and reread) Roy Fielding's dissertation.

share

In general I would see architecture books independent of Java or .NET or any other language. I found this blog post which lists 5 books for an architect.

I hope you would find it interesting too.

share

I enjoyed Head First Design Patterns:

http://www.amazon.com/First-Design-Patterns-Elisabeth-Freeman/dp/0596007124

More design than architecture (obviously) but it makes heavy use of examples. Examples are in Java, btw.

share

Not the answer you're looking for? Browse other questions tagged or ask your own question.