如何在Doctrine 2中使用标志readOnly?

时间:2017-08-23 21:58:07

标签: doctrine-orm annotations entity

原则entity可以有readOnly标志。

如何使用标志readOnly

/** @Entity(readOnly) */ <-- like this?
/** @Entity(readOnly=true) */ <-- or like this?
class User
{
    //...
}

1 个答案:

答案 0 :(得分:8)

根据this answerthis issue,后者是要走的路:

/** @Entity(readOnly=true) */