I have not looked in the source code what has changed...that will follow later but -
If you add a class to the config and add an assembly that contains the class too, Beta version fails where as the Alpha was fine...
Code:
private static Configuration nhConfig;
private static ISessionFactory nhFactory;
static HibernateService()
{
try
{
nhConfig = new Configuration();
nhConfig.AddAssembly("BusinessObjects");
***********F A I L S I N B E T A***********
nhConfig.AddClass(typeof(BusinessObjects.Person));
******************************************
nhFactory = nhConfig.BuildSessionFactory();
}
catch (Exception ex)
{
_log.Fatal("F A I L E D T O L O A D H I B E R N A T E: " + ex);
throw ex;
}
}