我需要存储一些数据,我们的预订和多数民众包括客户数据,我想我的预订文档内嵌入的文档。 以我目前的配置中,所有的数据都坚持在MongoDB中,但是当我加载文件订票,也没有相关的客户对象。 难道我忘了一些配置或者其他什么东西?
这是我的文档怎么是这样的:
预订-文件:
<?php
namespace AppBundle\Document;
use Doctrine\ODM\MongoDB\Mapping\Annotations as MongoDB;
/**
* @MongoDB\Document
*/
class Booking
{
/**
* @MongoDB\EmbedOne(targetDocument="\AppBundle\Document\Customer")
*/
private $customer;
// getter and setter...
}
客户 - 文件
<?php
namespace AppBundle\Document;
use Doctrine\ODM\MongoDB\Mapping\Annotations as MongoDB;
/**
* @MongoDB\EmbeddedDocument
*/
class Customer
{
// fields, getter and setter
}