I was wonderin开发者_运维问答g how you use your ddd model within a web application. Within Eric Evan Cargo application there\'s the Cargo class which contains the value object Itinerary. Within Itiner
I have a standard Domain Layer entity: public class Product { public int Id { get; set; } public string Name { get; set; }
I\'m trying to use the Repository pattern for my current project and i\'m currently in the proc开发者_JAVA百科ess of trying to model the domain and find the aggregate roots.
I am currently working with an enterprise application in a .NET environment (n-layered) and I would like to know the best way to manage authentication / authorization + data filtering in my BussinessL
I have a question regarding DDD and the repository pattern. Say I have a Customer repository for the Customer aggregate root. The Get & Find methods return the fully populated aggregate, which i
I have written my application logic in domain objects (to enable multiple user interfaces and porting to other platforms), and am now lookng at implementing Activities for the user interface.
I want to know how to convert MIDI ticks to actual playback seconds. For example, if the MIDI PPQ (Pulses per quarter note) is 1120, how would I convert it into real worl开发者_C百科d playback second
My business objects are coded with the following architecture: validation of any incoming data throws an exception in the setter if it doesn\'t fit business logic.
In an application that has followed a Domain Driven Design where you have the following sorts of concepts
I am new to DDD but I am trying to implement it in my Project - I have a service which is setup following the DDD principles - Application / Model / Repository - The Clients of the Service want to get