Week 14, year 2016
- Having the domain model separated from the persistence model - In this post, I’d like to write about a pretty common discussion in DDD circles: should one have the domain model separated from the persistence model? In other words, should you map your domain objects to the DB tables directly using an ORM or would it be better to use a separate set of Data Access Objects (DAOs) instead? [Enterprise Craftsmanship]
- Code Reviews and Blame Culture - Gated pre-merge code reviews are bad. Always refactor on master. Always do Pair Programming. Don’t use branches. Apply Continuous Integration. Best practices likes these are great. [Mathias Verraes]