Hi,
I need to use ClassMaps instead of auto mapping because of legacy
database. But I don't see how to tune SharpArch to use them. I tried
to remove AutoPersistentModelGenerator and use the following code in
the InitializeNHibernateSession method:
var config = NHibernateSession.Init(webSessionStorage,
new[]
{"ApplicationConfiguration.Models.dll"}
);
Fluently.Configure(config)
.Mappings(m =>
{
m.FluentMappings.AddFromAssemblyOf<ConfigSchema>();
});
But I always get MappingException - "No persister for: ConfigSchema"
when trying to work with the ConfigSchema.
Has anyone tried to do this?