假设我有一个 MongoDB 实例,其中包含 2 个集合 - places和people。
典型的场所文档如下所示:
{
"_id": "someID"
"name": "Broadway Center"
"url": "bc.example.net"
}
人员文档如下所示:
{
"name": "Erin"
"place": DBRef("places", "someID")
"url": "bc.example.net/Erin"
}
有什么方法可以验证people集合中每个文档的位置DBRef吗?