如何在不刷新其他实体的情况下只刷新一个实体?
例如: 我有2个对象BStatus和B.它们与OneToOne关系有关。 我想在B上做一些工作而不将其保存到DB但是在BStatus上保存工作的状态,这样另一个进程就可以读取它。
class B {
/**
* @var int
* @ORM\Column(type="integer")
*/
public $i = 0;
/**
* @var BStatus
* @ORM\OneToOne(targetEntity="BStatus", inversedBy="b")
*/
public $status;
/**
* B constructor.
*/
public function __construct() {
$this->status = new BStatus($this);
}
public function count() {
return $this->i++;
}
}
class BStatus {
/**
* @var float
* @ORM\Column(type="float")
*/
public $progress = 0;
// <UPDATED>
/**
* @var B
* @ORM\OneToOne(targetEntity="B", mappedBy="status")
*/
public $progress = 0;
// </UPDATED>
/**
* BStatus constructor.
* @param B $b
*/
public function __construct(B $b)
{
$this->b = $b;
}
}
$b = // Load from DB
$max = 100;
for ($i = 0; $i < $max; $i++) {
$num = $b->count();
$b->getStatus()->setProgress(($num + 1) / $max);
// Here I want to save the status
}
// Here I want to save $b
更新 BStatus有指向B的指针。
更新2
试图分开B,冲洗并合并B回来。
for ($i = 0; $i < $max; $i++) {
$num = $b->count();
$status = $b->getStatus();
$status->setProgress(($num + 1) / $max);
$em->detach($b);
$em->flush();
$em->merge($b);
}
得到了执行:
'Doctrine\ORM\ORMInvalidArgumentException' with message 'A new entity was found through the relationship BStatus#b' that was not configured to cascade persist operations for entity: local.
To solve this issue: Either explicitly call EntityManager#persist() on this unknown entity or configure cascade persist this association in the mapping for example @ManyToOne(..,cascade={"persist"}).'
答案 0 :(得分:1)
$em->flush($b);
只会刷新指定的实体。看起来不像在线文档显示这个功能,但实际代码的高峰显示它至少是自从Doctrine 2.4以来。
答案 1 :(得分:0)
您可以从工作单元中分离对象
$em->detach($instanceOfB)