我遇到了问题,如下所述: Fluent NHibernate 1.1: when multiple column name mappings are used on different classes
正如有人指出的那样,我需要看看HBM XML配置以帮助调试。
我有一个配置FluentConfiguration配置对象工作:
config.Mappings(m => m.FluentMappings.AddFromAssembly(Assembly.GetExecutingAssembly()));
如何将文件保存到Fluent nHibernate 1.1 HBM XML配置?
答案 0 :(得分:2)
我找到了一种方法:
config.Mappings(m => m.FluentMappings.ExportTo(@"C:\temp\mappings"));