How can you achieve primary key – foreign key relationships in MongoDB?

Technology CommunityCategory: MongoDBHow can you achieve primary key – foreign key relationships in MongoDB?
VietMX Staff asked 3 years ago

By default MongoDB does not support such primary key – foreign key relationships. However, we can achieve this concept by embedding one document inside another (aka subdocuments). Foe e.g. an address document can be embedded inside customer document.