NHibernate 查询问题
我有一个非常简单的场景,使用 NHibernate:
- 一个抽象基类“animal”;
- 两个具体子类“cat”和“dog”,带有鉴别器列(1 代表狗,2 代表猫);
- 一名普通班人员;
人与动物是多对一的。
我想检索养狗的人的列表。 我该怎么做? 非常感谢
I have a very simple scenario, using NHibernate:
- one abstract base class "animal";
- two concrete subclass "cat" and "dog" with discriminator column (1 for dog and 2 for cat);
- one normal class Person;
Person have a many-to-one of animal.
I want retrieve a list of person with a dog.
How can I do this?
thx a lot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解得很好,就像这样:
上面是“Criteria API”,但你可以使用“HQL”,它更像是这样:
HTH
If I understand well, something like this :
above is "Criteria API" but you can use "HQL" it's more something like this :
HTH