sql >> Database >  >> NoSQL >> MongoDB

Virtueel bevolken met Mongoose

Je kunt het path-attribuut gebruiken voor deeplinking, dit zou ook werken voor array-types.

documentId: { type: mongoose.ObjectId, ref: 'Media' },
schema.virtual('educationDocument', {   
    ref: 'Media', // the collection/model name
    localField: 'education.documentId',
    foreignField: '_id',
    justOne: true, // default is false });
const users = await User.find({})
    .populate({ path: 'educationDocument' })
    .populate({ path: 'experienceDocument' })
    .populate({ path: 'certificationDocument' })
    .execPopulate()


  1. Spring boot caching met redis, key have \xac\xed\x00\x05t\x00\x06

  2. Schakel tussen JPA en Mongo in de Spring Boot MVC-app

  3. MongoDB C# Driver projectie $elemMatch $

  4. Hoe werkt cursor.observe en hoe voorkom je dat meerdere instanties actief zijn?