使用Mongoose,我们可以填充参考文档
我的文档看起来像这样,
var Menu = new Schema({
name: String,
items:[{ type: ObjectId, ref: 'Items' }],
我在Menu.Items中存储了项目文档_id。
因此,每当我想要使用项目数据菜单时,我都会执行以下操作。
喜欢
menu.findOne().populate( 'items').exec(function(err, menuData ) {
// here with menuData.items we can access referenced document. not just an _id
});
Q1。 ).Net C#MongoDb Driver中是否有任何设施? Q2。 )我如何存储文件的参考?
由于