domain-driven-design
DDD: inter-domain referencing design issue?
What are DDD recommendations for inter-domain referencing design? Should I try to connect them as \"Matryoshka\" (put one into another) or it is better to create upper-level \"inter-domain\" busines[详细]
2023-04-01 07:45 分类:问答POST of ViewModel and Validation on DomainModel
I\'ve been developing a web app using asp.net mvc and nhibernate. I\'m trying to follow some principles of DDD and best pratices of Asp.Net MVC. My question is about Clean up POST with VIewModels. To[详细]
2023-04-01 01:40 分类:问答Does it make sense to only transfer some data to the UI when thinking DDD?
Say I have a model Exam. There will be a collection of Question objects containing questions and answers, and a collection of what each student have answered.[详细]
2023-03-31 23:03 分类:问答Using Entity Framework Code-first am I required to have the model of my domain anemic?
with Entity Framework Code-First I have to have all properties public to generate database, this mean using Entity Framework Code-First approach I am forced to have an anemic domain mixed with a rich[详细]
2023-03-31 07:10 分类:问答How to handle paging of sub entities with the repository pattern?
I\'m learning domain driven design. I am currently trying to write a simply application in C# designing it using DDD. This application has an aggregate root A which can contain 0..n sub entities B. Th[详细]
2023-03-31 03:11 分类:问答Domain Driven Design API Question
I\'m new to DDD and I am working on my first project, which is for an online golf ou开发者_如何学JAVAting registration process. my requirements are pretty simple. users register for the outing and can[详细]
2023-03-30 21:47 分类:问答DDD - Complex ORM Mapping
I am writing a Java DDD application in which the database model is already designed and implemented. The problem i开发者_开发问答s that my domain objects differs from the database model and the the OR[详细]
2023-03-30 21:27 分类:问答What's the correct way to model a true/false property in my domain?
Imagine I have开发者_运维百科 a domain with a Entity and one of properties of this Entity is a true/false property like a Active/Inactive.[详细]
2023-03-30 17:26 分类:问答Update an entity inside an aggregate
I was reading a similar question on SO: How update an entity inside Aggregate, but I\'m still not sure how a user interface should interact with entities inside an aggregate.[详细]
2023-03-30 16:00 分类:问答Is it possible to use DDD and BDD together?
I like the middle-out development that is achieved with DDD. Development is driven by domain, the most 开发者_StackOverflow中文版solid part of application. We don\'t depend on infrastructure, persiste[详细]
2023-03-30 08:05 分类:问答