I've read in numerous posts that it should be possible to create a bidirectional relationship with a non-primary key, and that to do so I need to use the property-ref attribute in my mappings.
I'm having issues during schema creation for this type of mapping... basically it appears that hbm2ddl is ignoring the property-ref and trying to create a foreign key associated with the primary key. I'm seriously stumped and wondering if this is a bug?
Mappings
Member
<?xml version="1.0" encoding="utf-16"?>
<hibernate-mapping auto-import="true" default-lazy="false" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:nhibernate-mapping-2.2">
<class name="Model.Member, Model" table="Member">
<composite-id name="Id" class="Model.MemberKey, Model" unsaved-value="none" access="property">
<key-property name="SystemName" access="property" column="SystemName" type="String" length="10" />
<key-property name="MemberId" access="property" column="MemberId" type="String" />
</composite-id>
<property name="FirstName" access="nosetter.camelcase" type="String">
<column name="FirstName" />
</property>
<property name="LastName" access="nosetter.camelcase" type="String">
<column name="LastName" />
</property>
<property name="Password" access="nosetter.camelcase" type="String">
<column name="Password" />
</property>
<many-to-one name="System" access="property" class="Model.System, Model" column="SystemName" property-ref="SystemName" lazy="proxy" />
</class>
</hibernate-mapping>
System
<?xml version="1.0" encoding="utf-16"?>
<hibernate-mapping auto-import="true" default-lazy="false" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:nhibernate-mapping-2.2">
<class name="Model.System, Model" table="System">
<cache usage="read-write" />
<id name="Id" access="nosetter.camelcase" column="SystemId" type="Int64" unsaved-value="0">
<generator class="native">
</generator>
</id>
<property name="Description" access="property" type="String">
<column name="Description" length="64" />
</property>
<property name="Enabled" access="property" type="Boolean">
<column name="Enabled" />
</property>
<property name="SystemName" access="property" type="String">
<column name="SystemName" length="10" not-null="true" unique="true" unique-key="UQ_System_SystemName" />
</property>
<bag name="Members" access="property" table="vMember" lazy="false">
<key column="SystemName" />
<one-to-many class="Model.Member, Model" />
</bag>
</class>
</hibernate-mapping>
Schema Creation Error
2011-08-26 10:22:30,001 [7] DEBUG NHibernate.Tool.hbm2ddl.SchemaExport [(null)] -
alter table Member
add constraint FK1E0AB1C6CD73757
foreign key (SystemName)
references System
2011-08-26 10:22:30,001 [7] DEBUG NHibernate.Tool.hbm2ddl.SchemaExport [(null)] - SQL Batch: alter table Member add constraint FK1E0AB1C6CD73757 foreign key (SystemName) references System
2011-08-26 10:22:30,006 [7] WARN NHibernate.Tool.hbm2ddl.SchemaExport [(null)] - Unsuccessful: alter table Member add constraint FK1E0AB1C6CD73757 foreign key (SystemName) references System
2011-08-26 10:22:30,007 [7] WARN NHibernate.Tool.hbm2ddl.SchemaExport [(null)] - Column 'System.SystemId' is not the same data type as referencing column 'Member.SystemName' in foreign key 'FK1E0AB1C6CD73757'.
Any help is greatly appreciated.