Who does not love convention over configuration? Whenever it makes sense I try to use it in my role as a system architect. It helps my programmers write more robust code out of the box.
Writing concurrency safe code is a corner stone in writing robust code today, without it data quality can not be guaranteed. And when things go wrong you want to know who and when entities were updated so you can investigate what have gone wrong.
So what I did at my latest assignment was to force this onto the entities by convention using two markup interfaces ICreated and IUpdated. (more…)