as a Mac outsider it seems that two popular programming languages on the Mac appear to be Objective C and Ruby.
In our e-commerce application, we have different kinds of products having different kinds of attributes, e.g., a shoe has different selling features than an edible cake.Our e-commerce site allows you
I was looking for some advice on designing a data model for contract administration. The general life cycle of a contract is thus:
In the Evan\'s DDD book he speaks of segregating concepts in the domain with \"modules\". The term \"module\" can be translated to a number of different things in software development, both conceptual
What do you do if you need to generate a read-only list of data on a page and that data would naturally come from several, potentially 5 or more different repositories?
Closed. This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing
I\'m 开发者_如何转开发wondering - what i should keep in mind when trying to apply domain driven design on CMS app that has quite complex business logic? Aren\'t those beasts mutually exclusive?
Is anyone using the techniques from Domain Driven Design? I\'ve recently read the Eric Evans book of the same name (well, most of it!) and would be interested to hear from anyone who\'s implemented al
I am working on a solution that used DDD for architecture.I have a property in my ViewModel which points to a ValueObject, the view model also implements INotifyPropertyChanged interface.The value of
How does one implement lists such as开发者_如何学Go a list of months in the year, or a list of years in DDD? Where does the logic go, inside value objects, a service, is it part of the domain layer?IM