Create documents and entities that contain references to each other.
The following options are possible on reference one and many associations:
Owning Side
Inverse Side
@Gedmo\ReferenceOne
<?php
/**
* @Gedmo\ReferenceMany(type="entity", class="Entity\StockItem", mappedBy="product")
*/
private $stockItems;
@Gedmo\ReferenceMany
<?php
/**
* @Gedmo\ReferenceOne(type="document", class="Document\Product", inversedBy="stockItems", identifier="productId")
*/
private $product;
Here is an example where you have a Product which is mapped using the Doctrine MongoDB ODM project and it contains a property $stockItems
that is populated from the Doctrine2 ORM.
<?php
namespace Document;
use Doctrine\Common\Collections\Collection;
use Doctrine\ODM\MongoDB\Mapping\Annotations as ODM;
use Gedmo\Mapping\Annotation as Gedmo;
/**
* @ODM\Document
*/
class Product
{
/**
* @ODM\Id
*/
private $id;
/**
* @ODM\String
*/
private $name;
/**
* @Gedmo\ReferenceMany(type="entity", class="Entity\StockItem", mappedBy="product")
*/
private $stockItems;
public function getId()
{
return $this->id;
}
public function setId($id)
{
$this->id = $id;
}
public function getName()
{
return $this->name;
}
public function setName($name)
{
$this->name = $name;
}
public function getStockItems()
{
return $this->stockItems;
}
public function setStockItems(Collection $stockItems)
{
$this->stockItems = $stockItems;
}
}
The StockItem
has a reference to the Product
as well.
<?php
namespace Entity;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Mapping\Annotation as Gedmo;
use References\Fixture\ODM\MongoDB\Product;
/**
* @ORM\Entity
*/
class StockItem
{
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
private $id;
/**
* @ORM\Column
*/
private $name;
/**
* @ORM\Column
*/
private $sku;
/**
* @ORM\Column(type="integer")
*/
private $quantity;
/**
* @Gedmo\ReferenceOne(type="document", class="Document\Product", inversedBy="stockItems", identifier="productId")
*/
private $product;
/**
* @ORM\Column(type="string")
*/
private $productId;
public function getId()
{
return $this->id;
}
public function setId($id)
{
$this->id = $id;
}
public function getName()
{
return $this->name;
}
public function setName($name)
{
$this->name = $name;
}
public function getSku()
{
return $this->sku;
}
public function setSku($sku)
{
$this->sku = $sku;
}
public function getQuantity()
{
return $this->quantity;
}
public function setQuantity($quantity)
{
$this->quantity = $quantity;
}
public function setProduct(Product $product)
{
$this->product = $product;
}
public function getProduct()
{
return $this->product;
}
public function setProductId($productId)
{
$this->productId = $productId;
}
public function getProductId()
{
return $this->productId;
}
}