如何正确忽略我的基础对象?

发布于 2024-11-02 02:48:50 字数 497 浏览 0 评论 0原文

每次我尝试允许 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忘羡 2024-11-09 02:48:50

在全球范围内,我发现无法通过创建模式来处理情况。现在我已经为独特的数据库设置创建了一个预处理过程。如果有人有任何想法,我愿意接受。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文