针对嵌套类的 NHibernate 查询

发布于 2024-09-10 04:00:59 字数 221 浏览 1 评论 0原文

我正在使用 NHibernate。我有一个具有嵌套类型的类。除了使用本机 SQL 查询之外,还有什么方法可以使用 NHibernate 来查询嵌套类型?

目前 HQL 中不允许嵌套类

编辑:外部类有一个嵌套类实例的 IList。

I'm using NHibernate. I have a class which has a nested type. Is there any way, using NHibernate, to query against the nested type, asides from using a native SQL query?

Nested classes are not allowed in HQL currently.

EDIT: The outer class has an IList of nested class instances.

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

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

发布评论

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

评论(2

笑梦风尘 2024-09-17 04:00:59

使用组件映射。

更多信息@ NHibernate 嵌套类映射问题

然后,使用 HQL 或 Linq to NHibernate,您可以会简单地说
string hql = "来自 Store s,其中 s.Employee.Id = 3";

Use a component mapping.

More information @ NHibernate nested class mapping issue

Then, using HQL or Linq to NHibernate, you would simple say something like
string hql = "from Store s where s.Employee.Id = 3";

悲歌长辞 2024-09-17 04:00:59

目前无法完成。

Can't be done currently.

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