We are taking a long, hard look at our (Java) web application patterns. In the past, we\'ve suffered from an overly anaemic object model and overly procedural separation between controllers, services
I\'ve had a lot of experience with writing domain driven applications using C#. The more applications I write the more I find that I want to take an approach that doesn\'t fit that well with standard
I\'m exploring Domain Driven Design for the first time and stuck with some questions in mind which I would like to discuss. One of 开发者_运维百科them is...
I recently started investigating CQRS and DDD for a green field project that I\'m about to start. I studied a great deal of material from Udi Dahan, Greg Young, Mark Nijhof and others. These were real
Given the following Entities: Container User Client Institution The Container entity has an association to one or more parties through the property AssignedToParties.
I\'m working on an a pretty big project right now and am trying to implement an MVP architecture.I\'m starting to run across a insta开发者_如何转开发nces where I think JQuery or Javascript might be be
I have page with a LinkButton on it that when clicked, I\'d like to add a Usercontrol to the page.I need to be able to add/remove as many controls as the user would like.The Usercontrol consists of th
This is actually my very first question on Stackoverflow. I hope its not the las开发者_开发知识库t and hopefully I will contribute with some answers myself.
When implementing Domain events should the event handlers be only used for purely domain concerns; something that you would discuss with the business experts, or are they open to be used by anything t
I was wondering if how my presentation layer is structured could be a lead to开发者_开发技巧 design my aggregate roots.