我是Mongodb的新手,我想我需要在3个不同的3 documents
中插入collections
,例如我可以说department
,students
和{{1}集合。当部门主管向department_membership
添加一个student
时,我需要插入文件,如
{_id:123,姓名:“st_name”,电子邮件:“test@gmail.com”}
在department
集合中,
{_ id:2356,dept_id:12,added_by_whom_id:253,student_id:123}
student
集合中的
{_ id:13111,dept_id:12,学生:{_ id:123,姓名:“st_name”}}
department
集合中的
我想要的是要么在相应的集合中插入所有文档,要么失败,如何处理?