标签: doctrine-orm annotations entity
原则entity可以有readOnly标志。
readOnly
如何使用标志readOnly?
/** @Entity(readOnly) */ <-- like this? /** @Entity(readOnly=true) */ <-- or like this? class User { //... }
答案 0 :(得分:8)
根据this answer和this issue,后者是要走的路:
/** @Entity(readOnly=true) */