TrueView V2 has some significant changes since the last version. You can download the beta and code sample here. POCO support TrueView now supports POCO classes, that don’t need to be inherited or marked up with attributes. Now you can re-use your POCO assemblies in other applications, and remove the dependency on the TrueView framework. [...]
Tag Archives: download
Domain Types – Interfaces
In the last post, I published the DomainTypes library: a set of .NET interfaces & base classes to provide the building blocks for DDD (source code included). In this post I’ll describe the interfaces and supporting design decisions. IDomainObject Represents any type of object within the Domain model. Currently this is simply used as a [...]
Free .NET type library for Domain Driven Design + source code
I’ve observed a lot of newcomers to the DDD scene, and typically there’s lots of talk about Entities, Value Objects, Aggregate Roots, Repositories, Factories, IoC, and various technical concerns. But I’m seeing a lot missing from the discussions. Like “What about the locking implications around an Aggregate?” or “Must Value Objects be immutable“, or even [...]