我在我的node.js应用程序中使用mongoose,基本上有以下模型: // Define Car modelCarSchema = new Schema({ brand : String, type: String, maxSpeed : Number});mongoose.model('Car', CarSchema);// Define User modelUserSchema = new
// Define Car model CarSchema = new Schema({ brand : String, type: String, maxSpeed : Number }); mongoose.model('Car', CarSchema); // Define User model UserSchema = new Schema({ lastname : String, firstname : String, cars : [CarSchema] }); mongoose.model('User', UserSchema);
我是NoSQL的新手,我真的想尝试一下,但我首先需要研究这是否真的符合我的需求.
使用上述模型,我是否可以创建一个查询,列出所有在其私人汽车中拥有特定类型汽车的用户?
我不知道如何在猫鼬中做到这一点.但在mongodb中它是可能的.所以,在mongodb shell中查询将如下所示:db.users.find({"cars.type":"sport"})
以上查询返回所有在其嵌套汽车集合中具有“sport”类型的汽车的用户.
Mongodb dot notation文档.