2009-08-04 6 views
0

Quelqu'un peut-il me dire comment accomplir cette cartographie en utilisant Fluent NHibernate? C'est simplement une table de comptes avec une clé composite, qui a beaucoup de comptes enfants dans une table de conjonction.Comment créer une relation plusieurs-à-plusieurs auto-référencée dans le mappage NHibernate Fluent?

Voici le mapping NHibernate de travail et la créer SQL qu'il génère:

<?xml version="1.0"?> 
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" auto-import="true"> 
<class name="NHibernateM2M000.Account, NHibernateM2M000" lazy="false"> 
    <composite-id> 
     <key-property type="Int32" name="AccountId" /> 
     <key-property type="Char" name="AccountTypeAbbr" /> 
    </composite-id> 
    <property name="Name" column="AccountName" /> 
    <bag name="ChildAccounts" lazy="false" table="AccountXref"> 
     <key> 
      <column name="ParentAccountId" sql-type="int" /> 
      <column name="ParentAccountTyper" sql-type="nchar" length="1" /> 
     </key> 
     <many-to-many class="NHibernateM2M000.Account, NHibernateM2M000"> 
      <column name="ChildAccountId" sql-type="int"/> 
      <column name="ChildAccountType" sql-type="nchar" length="1" />    
     </many-to-many> 
    </bag> 
</class> 

create table Account (AccountId INT not null, AccountTypeAbbr NCHAR(1) not null, AccountName NVARCHAR(255) null, primary key (AccountId, AccountTypeAbbr)) 

create table AccountXref (ParentAccountId int not null, ParentAccountTyper nchar not null, ChildAccountId int not null, ChildAccountType nchar not null) 

alter table AccountXref add constraint FKB769F8B52F1320AB foreign key (ChildAccountId, ChildAccountType) references Account 

alter table AccountXref add constraint FKB769F8B5A2DB3DC7 foreign key (ParentAccountId, ParentAccountTyper) references Account 

Répondre

0

Je crois après avoir regardé Fluent NHibernate au moment de cette annonce et maintenant, qu'il est impossible . Laisser tomber dans le fichier .hbm est le seul moyen d'accomplir ce que je voulais ici.

Questions connexes