| I have a Table with a hbn.xml file that is not getting compiled properly. I change the xmlns on the header and Ican see that it is picking up the file but for some reason can't compile it.
 
 
 In the app.config I have.
 
 <configSections>
 <section
 name="hibernate-configuration"
 type="NHibernate.Cfg.ConfigurationSectionHandler, NHibernate"
 />
 </configSections>
 <hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
 <session-factory>
 <property name="connection.provider">
 NHibernate.Connection.DriverConnectionProvider
 </property>
 <property name="connection.driver_class">
 NHibernate.Driver.SqlClientDriver
 </property>
 <property name="connection.connection_string">
 Server=(local);database=Pets;Integrated Security=True;User ID=xxx;Password=xxx
 </property>
 <property name="dialect">
 NHibernate.Dialect.MsSql2005Dialect
 </property>
 <property name="show_sql">
 false
 </property>
 </session-factory>
 </hibernate-configuration>
 
 
 and the Accounts.hbm.xml looks like:
 
 <?xml version="1.0" encoding="utf-8"?>
 <hibernate-mapping xmlns="urn:nhibernate-configuration-2.2" auto-import="true">
 <class name="BDM_Controller.Source.ORM.DB_Accounts, BDM_Controller" table="Accounts">
 <id name="AccountNumber" type="String"  length="9"/>
 <property name="ShortTitle" type="String" length="36"/>
 <property name="AlphaListNumber" type="String" length="7"/>
 
 lines omitted
 
 <property name="ValuationFee2PaymentMethod" type="String" length="1"/>
 <property name="RelationshipCode" type="String" length="7"/>
 </class>
 </hibernate-mapping>
 
 
 I Dont know what is missing? Any Ideas?
 
 Thanks,
 
 --John Putnam
 
 
 |