I've designed tables for my projects a few different ways and I'm curious to have peoples opinion if they feel one is more correct.
The example will involve Users,Stores,Addresses, and Phone Numbers.
Example A
- user table - contains all main user data
- user address table - contains all address data
- user phone number table - contains all phone number data
- store tables mimic the above standard
Saving
once a parent entity is saved, everything else can be batch inserted/updated
Example B - address table - contains all address data - phone number table - contains all phone number data
- user table - contains all main user data
- user address table - is a linking table to the address table
- user phone number table - is a linking table to the phone number table
- store table - mirrors the above standard
Saving
I would start a transaction and loop through all addresses saving them one by one. Getting the last insert id and link them to the respective foreign entity.
This method forces the use of active record from what I can see and has no solution for doing batch insert/updates but greatly decreases the amount of "main" tables that in the database
Thoughts
As more time goes on I'm starting to believe example B is incorrect. Normalization is about not duplicating data for their respected entity, not duplicating storage areas for your entire database.
Anyways all thoughts/opinions are greatly appreciated. Thanks!
Additional thoughts
So I've been thinking about this some more and here are my thoughts
A user and store in this example would fall into the category of an aggregate root in DDD. This says that any child object should not be able to exist without the parent.
In example A if you delete a user or store there would be no way to have it deleted by foreign key, which I think screams that it breaks the aggregate root rule.
Even though phone numbers and addresses have unique id's within the database and may even have those id's referenced at times through out the db they are still in fact value objects. Users and stores would be the real entities in this situation having value objects of phone numbers and addresses ( even though they have an id )
I was also confused in Example A how to load things using the repository pattern without having repositories talk to each other. Which this new line of thinking also resolves.
