0

私はNHibernateにかなり慣れていないので、拡張テーブルの2つの列が<joined-subclass>NHibernateマッピングに存在する必要があるという問題がありますが、適切な実装を見つけるのに最も苦労しています。

以下は私の実装の簡略化されたバージョンであり、最初に私が必要としているものを達成する方法だと思っていたものですが、NHibernate は a<join>内に a を許可しません<joined-subclass>

  <hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"
                     assembly="Sample.NHibernate"
                     namespace="Sample.NHibernate.ProgramAssociationAggregate"
                     default-access="property">

  <!-- Class definition -->
  <class name="ProgramAssociation" table="ProgramAssociation" lazy="false">

    <!-- Composite primary key -->
    <composite-id>
      <key-property name="BeginDate" column="BeginDate" type="date" />
      <key-property name="OrganizationId" column="OrganizationId" type="int" />
      <key-property name="ProgramName" column="ProgramName" type="string" length="60" />
      <key-property name="ProgramTypeId" column="ProgramTypeId" type="int" />
      <key-property name="PersonId" column="PersonId" type="int" />
    </composite-id>

    <!-- Optimistic locking for aggregate root -->
    <version name="LastModifiedDate" column="LastModifiedDate" type="timestamp" />

    <!-- Transient state detection -->
    <property name="CreateDate" column="CreateDate" type="DateTime" not-null="true" />

    <!-- Unique Guid-based identifier for aggregate root -->
    <property name="Id" column="Id" type="guid" not-null="true" />

    <!-- Properties -->
    <property name="EndDate" column="EndDate" type="date" />

    <!-- Derived classes -->
    <joined-subclass name="Sample.NHibernate.ProgramAssociationAggregate.SpecialProgramAssociation" table="SpecialProgramAssociation" lazy="false">
      <key>
        <column name="BeginDate" />
        <column name="OrganizationId" />
        <column name="ProgramName" />
        <column name="ProgramTypeId" />
        <column name="PersonId" />
      </key>

      <!-- PK properties -->
      <property name="PersonId" column="PersonId" type="int" not-null="true" insert="false" />
      <property name="ProgramTypeId" column="ProgramTypeId" type="int" not-null="true" insert="false" />
      <property name="BeginDate" column="BeginDate" type="date" not-null="true" insert="false" />
      <property name="ProgramName" column="ProgramName" type="string" length="60" not-null="true" insert="false" />
      <property name="OrganizationId" column="OrganizationId" type="int" not-null="true" insert="false" />

      <!-- Properties -->
      <property name="IEPReviewDate" column="IEPReviewDate" type="date" />
      <property name="IEPBeginDate" column="IEPBeginDate" type="date" />
      <property name="IEPEndDate" column="IEPEndDate" type="date" />

      <!-- Trying to join this table, but NHibernate does not allow for this. What is the best way to accomplish essentially the same thing? -->
      <join table="SpecialProgramAssociationExtension" schema="extension">
        <key>
          <column name="BeginDate" />
          <column name="OrganizationId" />
          <column name="ProgramName" />
          <column name="ProgramTypeId" />
          <column name="PersonId" />
        </key>
        <property name="IEPEventCode"/>
        <property name="WrittenConsentDate" type="date"/>
      </join>

    </joined-subclass>

  </class>
</hibernate-mapping>

NHibernate の経験が豊富な人は、私が必要としているものを達成する方法を知っていますか?

私は最近、この NHibernate リソースをここで使用していますが、この苦境にあまり役立つとは証明されていません。

ヒントやリソースを教えていただければ幸いです。

ありがとうございました。

4

1 に答える 1