Mongodb – Mongo db unique index on sub document problem
I have a collection estates with a unique index on the name field, created thus: db.estates.createIndex ({ "name": 1 }, { unique: true }) This works - attempts to insert a duplicate name cause an error. I try to create…