As I understand it all DDD entities should have an ID. So my question is in a master detail relationship, say a Product and a ProductDetail, should the ProductDetail have any knowledge of the Product? Is it necesarry with a ProductID property in the ProductDetail class? In a database this is of course normal as it is the only way to link the two objects but is this best practice in DDD? I am using Linq2Sql as a ORM mapper so this comes as a given but I think this is not the right way. Anybody with some words of wisdom on this?
|
feedback
|
|
Foreign keys are artifacts of relational data model. Object model operates with the concept of container. So, Order contains a collection of Order Lines. Order Line contains Product, etc. | |||||||
feedback
|
|
How will end users retrieve the ProductDetail? If the answer is that they will likely navigate to it from the Product, then the ProductDetail is simply a property of Product, or part of a collection of ProductDetails that is a property of the Product. So in your object-oriented code, the ProductDetail objects won't need to have a reference to the parent Product. Now in your database, you'll likely have a master table for Product with an Id column. You then have a child table for ProductDetail that has a foreign key to the Id of the Product it is related to. It's very important to remember that Domain-Driven Design principles apply only to your OO code. Relational databases and relational data modeling are a different thing altogether. | |||||
feedback
|