使用 Castle ActiveRecord,当两个类具有相同名称但不同命名空间时,我会收到 NHibernate DuplicateMappingException
当两个类有时,与 NHibernate DuplicateMappingException 相同的问题名称相同但命名空间不同。但是,我正在使用 Castle ActiveRecord,因此我不知道如何使用 auto-import=false 应用相同的解决方案。我用 Reflector 挖掘了 AR 代码,但我不知道如何控制生成的映射属性。
有人有办法解决这个问题吗?
谢谢, 蒂姆
The same problem as NHibernate DuplicateMappingException when two classes have the same name but different namespaces. However, I'm using Castle ActiveRecord so I don't see how I can apply the same solution, using auto-import=false. I dug through the AR code with Reflector but I don't see how I can control the mapping attributes that get generated.
Anyone have a way around this?
Thanks,
tim
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有布尔标志 UseAutoImport 传递给 ActiveRecordAttribute 的构造函数。请参阅链接 http://www.castleproject.org/activerecord/documentation /trunk/manual/attributedocs/Geneerated_ActiveRecordAttribute.html
Vij
There is boolean flag UseAutoImport passed to constructor of ActiveRecordAttribute. See link http://www.castleproject.org/activerecord/documentation/trunk/manual/attributedocs/Generated_ActiveRecordAttribute.html
Vij