dongzhou5344 2018-02-27 17:44
浏览 71

来自Doctrine ORM Cache的持久性集合中的未定义索引

I have the same annotations to others ManyToOne relationships and works fine, but with this one occurs this error from doctrine cache. I'm stuck in this. It's like the doctrine doesn't knew the inversedBy annotation.

The error track:

file: /var/www/html/clipp/Backend/vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php
line: 2917
message:    Undefined index: 000000003cb11e66000000006a2469c1

The ClientPromotion entity:

<?php

namespace Application\Model;

use Doctrine\ORM\Mapping as ORM;

/**
 *
 * @ORM\Entity
 * @ORM\Table(name="ApplicationClientPromotion")
 * @ORM\Cache(usage="READ_WRITE")
 */
class ClientPromotion
{
/**
 * @ORM\Id
 * @ORM\Column(type="integer");
 * @ORM\GeneratedValue(strategy="AUTO")
 */
protected $id;


/**
 * @ORM\ManyToOne(targetEntity="Application\Model\Client", cascade={"all"}, inversedBy="phoneCollection")
 * @ORM\JoinColumn(name="client_id", referencedColumnName="id",onDelete="CASCADE")
 * @ORM\Cache(usage="NONSTRICT_READ_WRITE")
 *
 */
public $client;

The Client entity:

/**
 *
 * @ORM\Entity
 * @ORM\Table(name="ApplicationClient"})
 * @ORM\Cache(usage="NONSTRICT_READ_WRITE")
 */
class Client
{
/* OTHER ATTRIBUTES */

/**
 * @ORM\OneToMany(
 *     targetEntity="Application\Model\ClientPromotion",
 *     mappedBy="client",
 *     cascade={"all"},
 *     orphanRemoval=true,
 *     fetch="EXTRA_LAZY")
 * @ORM\Cache(usage="NONSTRICT_READ_WRITE")
 * @var Doctrine\Common\Collections\Collection
 */
public $clientPromotionCollection;

The error occurs when I call a closure to filter the collection:

$freePricePromotions = $client->clientPromotionCollection->filter(function ($entry) {
    // some logic
});
  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 #MATLAB仿真#车辆换道路径规划
    • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
    • ¥15 数据可视化Python
    • ¥15 要给毕业设计添加扫码登录的功能!!有偿
    • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
    • ¥15 微信公众号自制会员卡没有收款渠道啊
    • ¥100 Jenkins自动化部署—悬赏100元
    • ¥15 关于#python#的问题:求帮写python代码
    • ¥20 MATLAB画图图形出现上下震荡的线条
    • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘