编写没有注释的
属性不应作为实体
用户的示例
链接到
数据库.
class User
{
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @ORM\Column(type="array")
*/
protected $username;
protected $notPersistedProperty
}
希望这有帮助.
原文链接:https://www.f2er.com/php/132985.html