Symfony 4 Doctrine 存储库不返回一个字段值
Symfony 4 Doctrine repository not returning one field value
我的实体中的 on field 有问题。
在 dev 中,一切正常,但在 prod 中,存储库的一个字段返回 null。
this->getDoctrine()
->getRepository(Realization:class)
->find($id)
实体:
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $yardage
在 var 转储中的产品上:
["yardage":"App\Entity\Realization":private]=> NULL
在 var 转储中的开发上:
["yardage":"App\Entity\Realization":private]=> int(111)
在 bin/console c:c 之后没有任何变化。
有什么想法吗?
关闭
我认为一些奇怪的缓存,周末后它工作正常...
我的实体中的 on field 有问题。 在 dev 中,一切正常,但在 prod 中,存储库的一个字段返回 null。
this->getDoctrine()
->getRepository(Realization:class)
->find($id)
实体:
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $yardage
在 var 转储中的产品上:
["yardage":"App\Entity\Realization":private]=> NULL
在 var 转储中的开发上:
["yardage":"App\Entity\Realization":private]=> int(111)
在 bin/console c:c 之后没有任何变化。
有什么想法吗?
关闭
我认为一些奇怪的缓存,周末后它工作正常...