私は2つのエンティティを持っています.1つはディスクリミタなどで構成されるメインのスーパークラスとして、もう1つはこのスーパークラスを拡張するものです...すべてのアクションをActionと呼ばれる1つのテーブルに記録できます。
私の識別エンティティ:
namespace Entities\Members;
/**
* @Entity
* @Table(name="actions")
* @MappedSuperClass
* @InheritanceType("JOINED")
* @DiscriminatorColumn(name="action_type", type="string")
* @DiscriminatorMap({"comments" = "Comments", "blog" = "Blog"})
* @HasLifecycleCallbacksIndex
*/
class Action {
/**
* @Id
* @Column(name="id", type="integer")
* @GeneratedValue(strategy="AUTO")
*/
protected $id;
/** @Column(type="string", length=300, nullable=true) */
public $name;
/** @Column(name="action_date", type="datetime", columnDefinition="datetime", nullable=false) */
protected $action_date;
/** @PrePersist */
public function updated() {
$this->action_date = new \DateTime("now");
}
}
これは、上記の識別エンティティを拡張するために使用するエンティティの 1 つです。
namespace Entities\Members;
/**
* @Entity
* @Table(name="comments")
* @HasLifecycleCallbacks
*/
class Comments extends Action {
/**
* @Id @Column(name="id", type="bigint",length=15)
* @GeneratedValue(strategy="AUTO")
*/
protected $id;
/** @Column(name="blog_id", type="integer", nullable=true) */
protected $blog_id;
/** @Column(name="comment", type="string", length=255, nullable=true) */
protected $comment;
/** @Column(name="comment_date", type="datetime", columnDefinition="datetime", nullable=true) */
protected $comment_date;
/**
* @ManyToOne(targetEntity="Members",inversedBy="comments", cascade={"persist"})
* @JoinColumn(name="userid", referencedColumnName="id")
*/
protected $author;
public function __construct() {
$this->comment_date = $this->comment_date = new \DateTime("now");
}
}
これは、コメントエンティティを永続化するとうまく機能します。
$entity = new Entities\Comments;
$entity->comment = "my new comment";
$this->em->persist($entity);
$this->em->flush();
私が固執すると、アクションがアクションテーブルに正常に追加されます...
ただし、findBy、findByOne メソッドはもう使用できません。これらのメソッドからの結果の戻り値 = null になりました。コメント クラスを編集して「アクションから拡張」を削除すると、教義の findby、findOneBy メソッドが機能し始めますが、メインの Actions スーパークラスを拡張していないため、tmy 識別子テーブルに追加されません...
アクションを拡張し、find、findOneBy などの教義メソッドも機能させるために必要です...
助言がありますか?