NHibernate 3 - 如何对 id/numeric/int 执行 LIKE

发布于 2024-12-05 15:15:14 字数 297 浏览 3 评论 0原文

虽然 SQL Server 非常适合执行以下操作:

where Id like '45%'

(id 是一个 int),但是 NH 会抱怨,因为在执行以下操作时,它仍然会尝试将比较值作为 int 类型的 SqlParameter 发送到 sql 中:

q.WhereRestrictionOn(cl => cl.CompanyId).IsLike(companyIdFilter)

那么如何使用新的 QueryOver API 来绕过它?

Whilst SQL Server is perfectly comfortable doing:

where Id like '45%'

(id being an int), NH will complain as it will still try to send the compare value into sql as a SqlParameter of type int when doing:

q.WhereRestrictionOn(cl => cl.CompanyId).IsLike(companyIdFilter)

So how to get round it with the new QueryOver API?

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

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

发布评论

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

评论(1

禾厶谷欠 2024-12-12 15:15:14

经过一番挖掘和反复试验后,这可以解决问题:

q.Where(Expression.Like(
   Projections.Cast(
     NHibernateUtil.String,
     Projections.Property<ChangeLog>(cl => cl.CompanyId)), 
   companyIdFilter.Value.ToString(),  
   MatchMode.Start
));

After some digging around and and trial and error, this does the trick:

q.Where(Expression.Like(
   Projections.Cast(
     NHibernateUtil.String,
     Projections.Property<ChangeLog>(cl => cl.CompanyId)), 
   companyIdFilter.Value.ToString(),  
   MatchMode.Start
));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文