views:

281

answers:

6

I am looking for a sample application which shows off good to great use of architectual patterns, so far I found

The problem with the above is that the requirements to get this up, make it a nightmare to work with.

My requirements list is it should be simple to get up and running, covers the basics and does need to be in a .NET language.

+1  A: 

How about Nerd Dinner for ASP.NET MVC?

John Asbeck
+1  A: 

May not meet your need for simple to get going but take a look at

Just reading about their architecture is a good start.

Grab a copy of Eric Evans DDD book for reading material as well.

Jafin
+1  A: 

I found out about the The Northwind Starter Kit through this great book by Dino Esposito, et. al. Uses a layered, MVC Architecture and is very easy to setup. Go to source code tab and download ready made Visual Studio solution.

LWoodyiii
A: 

.NET StockTrader example application from Microsoft, showcasing an enterprise SOA architecture.

nos
Could not get this StockTrader to work ! Error: Failed to decrypt using provider 'RsaProtectedConfigurationProvider'. Error message from the provider: The RSA key container could not be opened. - Documentation does not mention anything about configuring this RSA thingy.
joedotnot
Try this (it worked for me): C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis -pa "NetFrameworkConfigurationKey" "ASPNET"
Cocowalla
A: 

I found Eric Evans DDD book to be the most inspiring book on Enterprise Application Architecture I have read so far. Reading this book, I have learnt more about Software Architecture than by studying any sample application.

As a side note, I wouldn't constrain myself to a .NET language. E.g. if you know C#, you'll find Java easy to read.

Saying this, there is a big community around DDD and they have a good sample application (in Java) on http://domaindrivendesign.org/.

Johannes Rudolph