NoSQL Document-Oriented Databases : Introduction with MongoDB (part 2)
In MongoDB it is possible to add successively those 2 documents:
db.users.insertOne({
name:'Estelle'
})
db.users.insertOne({
email:'miguel@somecompany.com'
})
db.users.find();
which leads to this following result
Is it possible to use this kind of data in an application?
Answer? No!
What's a good approach to converge to a usable result?
Remember this? How to model it properly in the NoSQL approach?
Nested documents or references?