NHibernate unmapped class exception
- by John Prideaux
I am trying to implement a one-to-many relationship using NHibernate 2.1.2 but keep getting "Association references unmapped class" exceptions. I have verified that my hbm.xml files are embedded resource. Here are my classes and mappings. Any ideas?
public class OrderStatus
{
public virtual decimal MainCommit { get; set; }
public virtual…