Does everyone know Microsoft’s Patterns & Practices? It’s a part of MSDN Library (http://msdn.microsoft.com/en-us/library/ff921345) where Microsoft publishes some deep dive articles (some would rather say - “books”) where you can find out how to deal with interesting topics using Microsoft technologies. My favorite (so far) publications in P&P are: 

  1. Moving applications to the Cloud, 2nd Ed.
  2. Prism (MVVM-based application framework for XAML-oriented technologies)
  3. Improving Web Services Security (old, retired version are interesting as well)
  4. Project Silk (I didn’t have time to go through it completely, but what I’ve seen so far seems very useful)
Anyway, I’m not going to lead you through the old content. I’d like to encourage you to check the latest addition to P&P: "CQRS Journey".
CQRS stands for Command & Query Responsibility Segregation (some know it as CQS - Command-Query Separation) and is a simple principle that claims that each function (method) has to be either a command (action that is able to modify the data) or query (question, that can’t change an answer). That doesn’t look like a game-changer and most likely some of you already design their code that way (honestly - I did, even before I’ve heard the acronym “CQRS” for the first time), but if you don’t - make sure that you check that article on Martin Fowler’s bliki: http://martinfowler.com/bliki/CQRS.html
Anyway, back to business - CQRS Journey is an example project, created to be a learning experience for all interested in embracing CQRS and event sourcing (http://martinfowler.com/eaaDev/EventSourcing.html). And now, you can find it here: msdn.microsoft.com/en-us/library/jj554200
Share this post