Glue code for validation (2008-11-10)
Wouldn’t it be nice to be able to just call
var report = myDto.Validate();
without sacrificing extensibillity, testabillity, etc? What about at this,
public static class ObjectExtensions
{
public static ValidationReport Validate<Subject>(this Subject subject)
{
[...]

