私は自分の教義2のセットアップをモジュラー構造にしようとしてきました。エンティティを作成しようとすると、次のエラーが発生します。
Entity has to be managed for single computation Entities\User@0000000078d19339000000004266cb59
コード:
/* Test Doctrine */
$em = Zend_Registry::get('em');
$user = new Entities\User();
$user->name = "Bob";
$user->username = "bob";
$user->email = "bob@live.com";
$user->password = "test";
$user->activation = "";
$em->flush($user);
$em->persist();