There's a collection with 100.000 documents. Only 10 of them must have additional property that is not necessary for other documents (e.g. list of departments with only top ones have property 'Location'); As far as I understand both approaches should work just fine, but which one is preferable since using noSql db:
- add one more collection with documents that have 2 property: DepartmentId, Location.
- add property 'Location' to only selected documents, so others won't have it.