db_contacts 的 collection_contact
{
"_id" : ObjectId("5ac5d63cf0b6c601a8978b56"),
"contact_type" : "Individual",
"name" : "MyShipper",
} ......
db_shipments 的 collection_fclshipments
"shipper_info" : {
"shipper" : ObjectId("5ac5d63cf0b6c601a8978b56"),
"same_as_billing_address" : true
} ...
我想加入两个不同数据库的两个集合。我试过$ lookup方法。但这是不可能的。并且还尝试了db.getSibling / db.getSiblingDB。请建议任何正确的方法来处理这种情况。谢谢。