Domain model association

0
Hi, I have created domain model which contains two entities as shown in below screenshot : In Product entity, My Product is associated with multiple items so I have created ItemTable_Product assocaition between these entities. My another requirement like I want to display dropdown of ItemTable->Item attribute so I have created Product_ItemTable association between these entites. I have implemented as per my understanding. Is it correct way/best practice to implement like this way or is there any standard way to implement this requirement?
asked
2 answers
1

Your requirements are too incomplete to understand what you need. My best guess is that your requirement is to be able to create a Product and select several Items that you add to that Product. If the Product is a fruit bowl, the Items could be a basket, two apples, three bananas, and a pineapple.

In that case this is a possible domain model:

To add an x amount of items to the product, create a page with a Product-dataview, containing a datagrid of associated Items. Next to the dataview you show a list of Itemtypes which you can select to add it to the list of Items.

If this is not your requirement then please extend the description of your requirements in your question. Anyway, good luck!

answered
0

given your requirements the domain model is correct.

but I don’t have a clue what the added value is of the dropdown for ItemTable. for me it doesn’t make any sense. 

answered