NHibernate Restriction.IN 不适用于 IList

发布于 2024-10-21 03:56:15 字数 439 浏览 0 评论 0原文

我们正在使用 NHibernate。有 2 个类 父类包含子类的 IList。

我必须从表中获取所有具有某些子元素的父母。我的代码如下:

String[] childs= { "Child1", "Child2" };
ICriteria criteria = Session.CreateCriteria(typeof(**Parent**));
criteria.Add(Restrictions.In("Roles", **childs**));
return criteria.List<Parent>() as List<Parent>;

这会引发“NHibernate.QueryException:无法将集合与 InExpression 一起使用”错误。

有人可以帮忙吗?

We are using NHibernate. Have 2 Classes Parent class which contains IList of Child Classes.

From the table I have to get all the Parents that have certain Child elemnts. My code is as follows:

String[] childs= { "Child1", "Child2" };
ICriteria criteria = Session.CreateCriteria(typeof(**Parent**));
criteria.Add(Restrictions.In("Roles", **childs**));
return criteria.List<Parent>() as List<Parent>;

This is throwing "NHibernate.QueryException : Cannot use collections with InExpression" Error.

Can someone please help.

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

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

发布评论

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

评论(1

怀中猫帐中妖 2024-10-28 03:56:16

我相信这是您的答案,您需要为子添加别名 不能将集合与 InExpression 一起使用

I believe here is your answer you need add alias to child Cannot use collections with InExpression

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