By tag: DomainDrivenDesign
0
kicks
Implementing the Repository Pattern with Linq-to-Sql
The Repository Pattern, according to Martin Fowler, provides a "layer of abstraction over the mapping layer where query construction code is concentrated", to "minimize duplicate query logic". In practice it is usually a collection of data access services, grouped in a similar wa...
0
kicks
A Discussion on Domain Driven Design
X Driven Development, is what we use to determine if the software we are building works in accordance with what we expect it to do. But how do we know what we are building is in accordance with the actual business domain? Do you look to the 500 page requirements document for the answers? Do you l...
0
kicks
A Journey with Domain Driven Design (and NHibernate) - Part 8
We left off last time with our first association mapped and tested. Let’s dig in a bit deeper with NHibernate mapping.
Today I decided to separate my inherited classes into their own mapping file. This was as easy as creating the new files and <hibernate-mapping> root elements, copying ...