使用 Fluent NHibernate 的任何映射

发布于 2024-11-19 07:59:31 字数 201 浏览 4 评论 0 原文

Nhibernate 文档指定 ReferenceAny() 作为映射继承树的方法。

在此处查看文档。但是,代码指定该方法已弃用,并将在下一版本中删除。还有其他方法可以映射这个吗?

Nhibernate documentation specfies ReferenceAny() as a method to do the mapping inheritance trees.

Check doc here. However the code specifies the method as deprecated and will be removed in the next versions. Is there any other way to map this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

最后的乘客 2024-11-26 07:59:31

仅不推荐使用 ReferencesAny(成员属性) 重载。 ReferencesAny(Expression> memberExpression) 仍然完全有效。

这与人们声称 Enum.ToString 已被弃用时的混乱类型相同。采用 IFormatProvider 的重载已被弃用,但其他 ToString 重载没问题。问题在于,Intellisense 显示该成员已被剔除,尽管只有其重载的一个子集实际上已过时。

有关在 Fluent NHibernate 中使用 ReferencesAny 的更多信息,请参阅我的其他答案:使用 Fluent nHibernate 映射到多个表

Only the ReferencesAny<TOther>(Member property) overload has been deprecated. ReferencesAny<TOther>(Expression<Func<T,TOther>> memberExpression) is still perfectly valid.

It's the same type of confusion as when people claim that Enum.ToString has been deprecated. The overloads that take an IFormatProvider have been deprecated, but the other ToString overloads are fine. The problem is that Intellisense shows the member stricken-out, even though only a subset of its overloads are actually obsolete.

For more information on using ReferencesAny in Fluent NHibernate, see my other answer: Mapping to multiple tables with Fluent nHibernate

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