so, I think i'm doing something wrong here. any hints are appreciated. I have a GlossaryTerm object with a m=n relationship with itself. the idea is that a GlossaryTerm may be related to n number of other terms. How would I write this in a NHmapping file? I seem to be stick on this:
Code:
<bag name="RelatedTerms" table="GlossaryTermXRef">
<key column="GlossaryTermID" />
<many-to-many class="GlossaryTerm" column="RelatedTermID" />
</bag>
I'm not sure I've modeled this right. If I have, what would the cascades be? and inverse would not really be applicable here? lost...
-devon