如何正确忽略我的基础对象?
每次我尝试允许 Fluent NHibernate 自动映射我的域模型时 收到以下错误...
实体“BaseObject”没有映射的 Id。使用Id方法 映射您的身份属性。例如:Id(x => x.Id)。
我的域模型看起来像这样...
Customer (Assembly #1)
CoreEntity (Assembly #1)
EntityWithTypeId<Guid> (Assembly #2)
BaseObject (Assembly #2)
我发现的唯一解决方法是调用以下内容..
.IgnoreBase<BaseObject>()
.IgnoreBase<CoreEntity>()
有没有比使用 IgnoreBase 更好的方法?也许在一次大会上或者 在默认自动映射配置中?
谢谢, 斯蒂芬
Every time I try and allow Fluent NHibernate automap my domain model I
get the following error...
The entity 'BaseObject' doesn't have an Id mapped. Use the Id method
to map your identity property. For example: Id(x => x.Id).
My domain model looks something like this...
Customer (Assembly #1)
CoreEntity (Assembly #1)
EntityWithTypeId<Guid> (Assembly #2)
BaseObject (Assembly #2)
The only work around I've found is to call the following..
.IgnoreBase<BaseObject>()
.IgnoreBase<CoreEntity>()
Is there a better way than using IgnoreBase? Maybe in a convention or
in the DefaultAutomappingConfiguration?
Thanks,
Stephen
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在全球范围内,我发现无法通过创建模式来处理情况。现在我已经为独特的数据库设置创建了一个预处理过程。如果有人有任何想法,我愿意接受。
On a global scale I've found there is no way to handle situations by creating schemas. For now I've created a pre-process for unique database setup. If anyone has any ideas, I'm open to them.