NHIbernate 3 无法自动映射 XmlDocument 属性
我正在尝试映射其中一个属性是 XmlDocument
的类型,但出现此错误:
NHibernate.MappingException:表 ChangeLog_TestAuditHistory 中的关联引用未映射的类:System.Xml.XmlDocument
我正在使用 Fluent NHibernate 自动映射。 NHibernate 版本 3.0.0.4000 和 Fluent NHibernate 版本 1.2.0.694。我知道 NHibernate 应该支持 xml 列,但我从未见过任何使用自动映射的示例。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能是 Fluent 中的错误,或者是错误的约定......您可能需要告诉它 XmlDocument 不是一个实体。
如果将其映射为常规属性,NH 将默认使用正确的映射。
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.