I'm having trobule mixing hbm and fluent mappings with fluent nhibernate. I've been using traditional hbm (xml) mappings for an app I'm building and now I've decided to move over to mapping my app with fluent nhibernate.
Using the configuration below I'm getting an NHibernate.MappingException telling me that "An association from the table Location refers to an unmapped class: Soulful.Core.Domain.Model.Country". Country is the only entity I have mapped using fluent nhibernate so something seems to be wrong here as it all works if I switch back to the hbm mapping for Country. Any ideas on what might be wrong?
var configuration = Fluently.Configure()
.Database(MsSqlConfiguration.MsSql2008.ConnectionString(c => c.FromConnectionStringWithKey("DefaultConnection")))
.Mappings(m =>
{
m.HbmMappings.AddFromAssemblyOf<RecordRepository>();
m.FluentMappings.AddFromAssemblyOf<RecordRepository>();
})
.BuildConfiguration();
Here's what my mappings of Country looks like:
public class DomainEntityMap<TDomainEnity> : ClassMap<TDomainEnity> where TDomainEnity : DomainEntity
{
public DomainEntityMap()
{
Id(x => x.Id);
}
}
public class CountryMap : DomainEntityMap<Country>
{
public CountryMap()
{
Map(x => x.Name).Not.Nullable();
}
}
And here's the hbm mapping for Location
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="Soulful.Infrastructure" namespace="Soulful.Infrastructure.DataAccess.Mappings">
<class name="Soulful.Core.Domain.Model.Location,Soulful.Core" table="Location">
<id name="Id" type="Int32" unsaved-value="0">
<generator class="native" />
</id>
<many-to-one name="Country" class="Soulful.Core.Domain.Model.Country,Soulful.Core" foreign-key="FK_Country_Id" cascade="all">
<column name="CountryId" not-null="true" />
</many-to-one>
</class>
