tags:

views:

11

answers:

1

MSDN have some word docs on how to correctly partition and layer an application. However, what, if any, differences exist between partitioning and layering?

Thanks

+1  A: 

Say you are working on a web site about cooking where people can read recipes and discuss food they have made. You could partition the site into a content management system to look after the recipes, and a forum for discussions. Both parts of the website could still be made up of layers, for example a database layer and a presentation layer.

Douglas
Well explained. +1.
dotnetdev