0

我有一个字段 ID 自动递增的类

类普鲁巴{

/**
 * @var integer $id
 *
 * @ORM\Column(name="`id`", type="integer")
 * @ORM\Id
 * @ORM\GeneratedValue(strategy="AUTO")
 */
protected $id;

但是当我尝试这个时:

public function __construct()
    {


      $this->entorno = new Entorno('MSU',$this->id);

    }

this->id 未初始化为 1 且为 NULL

我要这个:

如果是第一个 new Prueba() 或学说 prueba 为空

 $this->id = 1

别的

$this->id=get the last ID from table Prueba in doctrine.

我该怎么办?

4

1 回答 1

0

抱歉,我忘了在我的 Entorno 课程中包含这个:* @ORM\JoinColumn(name="prueba_id", referencedColumnName="id")

于 2014-05-15T15:51:55.413 回答