Fluent NHibernate (1.2.0.712) export mappings to HBM not working / not respecting conventions
The HBM export function in Fluent NHibernate does not seem to work. If I call FluentMappingsContainer.ExportTo, the generated mappings come out incorrect, and I get the following exception: FluentNHibernate.Cfg.FluentConfigurationException: An invalid or incomplete configuration was used while creating a SessionFactory. Check PotentialReasons collection, and InnerException for more detail. My configuration code looks like this: MsSqlConfiguration database = MsSqlConfiguration.MsSql2008 .ConnectionString(GetConnectionString()) .Cache(c => c .UseQueryCache() .UseSecondLevelCache() .ProviderClass