vote up 0 vote down star

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>

flag

45% accept rate
Please add your fluent mapping to the question as well. – joshperry Nov 5 at 21:16
@joshperry: Added both the hbm and fluent mappings. Any ideas? – Kristoffer Ahl Nov 5 at 21:34

1 Answer

vote up 0 vote down

Try making your DomainEntityMap abstract, otherwise try creating CountryMap as a straight ClassMap<Country> rather than using the base class, see if that has any effect.

link|flag
@James: I tried both of your suggestions but none of them worked. Any other ideas? – Kristoffer Ahl Nov 6 at 18:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.