Recent Posts
Silverlight Cookbook: ViewModels, Coroutines and Binding Conventions
This post is part of a series of blog posts detailing various aspects of the Silverlight Cookbook, an initiative to demonstrate proper design choices for building enterprise-class line-of-business applications with Silverlight (and WPF if you will). It currently consists out of the following part...
ALM Practices Part 12: Reducing Technical Debt
What is it? Technical Debt is every change to your code base that does not comply with the usual level of quality your team has agreed upon. Since this level of quality has been introduced to guarantee a healthy code base throughout the life time of the system, introducing technical debt essenti...
My Silverlight 4 Reference Architecture: The Domain Model
The Domain Model is roughly designed according to the DDD principles where cross-aggregate logic is handled by the command handlers instead of the more traditional domain services. One thing that I changed after I attended Greg Young's DDD/CQRS training is that I no longer allow my domain entitie...
My Silverlight 4 Reference Architecture: Querying
After having put the introduction and the commanding part behind us, let me explain how I deal with querying. Consider the following slice of the reference architecture. My original intention was to use WCF Data Services combined with NHibernate on the query side. For one, because it allo...
My Silverlight 4 Reference Architecture: Commanding
<p $1=”$1”></p> <p $1=”$1”>After sharing my thoughts on unit testing in Silverlight and the combination of NHibernate and WCF Data Services, it is time to discuss the updated version of the Silverlight reference architecture from one of my posts of last year. To put the discu...
Getting more out of unit testing in Silverlight
As I already mentioned in my previous post, we're building a line-of-business app using Silverlight 4 and WCF Data Services. I really think Silverlight is great for those kind of systems, but since it is based on a different run-time as the full .NET framework, you may wonder what you'll run into...