i have many tables : customers, prospects, friends..
They all have some Notes.
Question 1:
Should i have one Notes Table shared with all the parent Tables.
OR
Should i have a NotesCustomer, NotesProspects, NotesFriends Tables ?
Question 2:
If the best solution is the first one then this general Notes table should then have a FK to the parent table but ALSO the type of the parent table ?
I'm using EntityFramework but this question is also general i guess...
Thanks Jon