Lets assume I'm dealing with the next situation (taken from: http://knol.google.com/k/nhibernate-chapter-8-inheritance-mapping#8(2E)1(2E)3(2E)(C2)(A0)Table_per_subclass(2C)_using_a_discriminator )

<class name="Payment" table="PAYMENT">
<id name="Id" type="Int64" column="PAYMENT_ID">
    <generator class="native"/>
</id>
<discriminator column="PAYMENT_TYPE" type="string"/>
<property name="Amount" column="AMOUNT"/>
...
<subclass name="CreditCardPayment" discriminator-value="CREDIT">
    <join table="CREDIT_PAYMENT">
        <key column="PAYMENT_ID"/>
        <property name="CreditCardType" column="CCTYPE"/>
        ...
    </join>
</subclass>
<subclass name="CashPayment" discriminator-value="CASH">
    <join table="CASH_PAYMENT">
        <key column="PAYMENT_ID"/>
        ...
    </join>
</subclass>
<subclass name="ChequePayment" discriminator-value="CHEQUE">
    <join table="CHEQUE_PAYMENT" fetch="select">
        <key column="PAYMENT_ID"/>
        ...
    </join>
</subclass>
</class>

My problem is that when SELECTing from "Payment" table I need to set filter on subclasses, because for each "PAYMENT_ID" it is possible for me to have more than one record in the subclass tables. I need to set the WHERE clause on the subclass table in order to get the single relevant record according to my business logic.

EDIT: I'm dealing with legacy system which has history support inside the data tables. Therefor when changes are made to some record, there is a bool column "IS_LAST" which determines which iteration of the record is last one. "IS_LAST" column exists in every subclass table: CreditCardPayment, CashPayment.. Because of that i would like to define filter on the subclass'es table. I encountered a problem when discovered that there is no filter element for subclass mapping. Is there a solution for me?

link|improve this question
maybe the mapping you posted is not the best option for your scenario. Can you post a simplyfied example of your tables and use case? – Firo Dec 19 '11 at 8:15
I'm dealing with legacy system which has history support inside the data tables. Therefor when changes are made to some record, there is a bool column "IS_LAST" which determines which iteration of the record is last one. Because of that i would like to define filter on the subclass'es table. I encountered a problem when discovered that there is no <filter> element for subclass mapping. Is there a solution for me? – MazAlex Dec 20 '11 at 18:00
feedback

1 Answer

Great question, waiting for the answer.

link|improve this answer
I'm dealing with legacy system which has history support inside the data tables. Therefor when changes are made to some record, there is a bool column "IS_LAST" which determines which iteration of the record is last one. – MazAlex Dec 20 '11 at 17:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.