ManyToMany in a Person Blog Relationship A Person can be a subscriber of many blogs. A Blog can have many subscribers.
|
1 2 3 4 5 6 |
const Person = { isSubscriberOfBlogs: [] } const Blog = { subscribers = [] } |
But since this is an inefficient way to manage usually a proxy table is used with [PersonID], [BlogID], aka the 2 related data models. ManyToOne and OneToMany in a Person Blog Relationship A…
Read Article