Year: 2010

  • Project references in DDD

    Designing a large application with Domain Driven Design (DDD) can give headaches when the number of projects in a solution grow. The more domain projects and accompanying services/repository-projects we have, the greater the chance that we (accidentally) reference a service-project from a domain project making that domain project dependent on the underlying database or ORM.…

  • Unit testing coverage with PartCover and ReportGenerator

    In an ideal software development world we would test all of the code that we write. So it would be nice if we would be able to tell how much of the code is covered by our own unittests and the cool thing is; there are free tools around that help us discover our code…