the more I explore DDD and repositories, the more I feel myself drawn to a domain services approach instead.
I\'m have application that gets image in binnary format. Then thi开发者_如何学编程s application must convert this image to specific dimmension and save both form (orginal and specific) to disk. In thi
Can i access model service through model entity by usinginterface ofmodel service. I know that we can access entity from model service, but vice versa though model ser开发者_开发技巧vice interface is
According to Eric Evans, associations should Impose a traversal direction Add qualifiers and reduce multiplicity
In a DDD pattern should the unit of work be coupled with the repository? I\'ve seen several different examples, including a repository that implements a unit of work interface, a repository that imple
Been watching some Greg Young videos lately and I\'m trying to understand why there is a negative attitude towards Setters on Domain objects开发者_开发技巧. I thought Domain objects were supposed to b
Where should I place the Validation logic of the Domain objects in my solution? Should I put them in the Domain classes, Business layer or else?
I\'m planning to use \"Specification pattern\" to validate my domain objects in my solution. Where is the \"correct\" place to put the \"specification\" classes in my solution? Should I create a 开发
I\'m j开发者_运维百科ust wondering if Specification pattern is pointless, given following example:
As an exercise I am trying to cr开发者_开发问答eate a simple blog app in .NET, employing DDD. So far I have User, Topic and Comment classes. But the problem is how to link Comment with User and Topic?