I\'m trying to utilise FluentNHibernate with Automapping but am receiving the following error No persister for: nHibern开发者_如何学PythonateSpike.Entities.Route
Fluent NHibernate doesn\'t like this, throwing an error: {\"Association references unmapped class: System.String\"}
I\'m trying to figure out what the convention would be for a value object list, in this case an IList. Here a code fragment for my domain model:
It appears that NHibernate cannot automap more than one IList of a given type in an entity. Consider the following two entities (based on the Examples.FirstProject sample code that is included with t
Having successfully gotten a sample program working, I\'m now starting to do Real Work with Fluent NHibernate - trying to use Automapping on my project\'s class
I just started looking at NHibernate this week, and would love to use the Automapping approach on my current project.
just wondered if anyone know if there is a way to crate a Many-to-Many relationship table automatically using some attribute? without creating the table, or mapping a class to become that relation tab
Right now, I\'m switching my project over from the classic fluent nhibernate style of manually defining a ClassMap for each domain entity, to having the auto-mapper auto-generate the mappings for me.B