0

I'm trying to map a type where one of the properties is an XmlDocument but I get this error:

NHibernate.MappingException : An association from the table ChangeLog_TestAuditHistory refers to an unmapped class: System.Xml.XmlDocument

I am using Fluent NHibernate automappings. NHibernate version 3.0.0.4000 and Fluent NHibernate version 1.2.0.694. I know NHibernate is supposed to support xml columns, but I've never seen any examples using auto mappings.

kelloti
  • 8,705
  • 5
  • 46
  • 82

1 Answers1

0

That's probably a bug in Fluent, or a wrong convention... you probably need to tell it that XmlDocument is not an entity.

If you map it as a regular property, NH will use the correct mapping by default.

Diego Mijelshon
  • 52,548
  • 16
  • 116
  • 154