扩展 NHibernate 以支持聚合函数

发布于 2024-10-29 07:09:22 字数 126 浏览 0 评论 0原文

是否可以扩展 NHibernate 以添加对数据库系统特有的聚合函数的支持?我有一些在 PostgreSQL 中使用 array_agg() 函数(和其他函数)的查询,我想将它们转换为 HQL/ICriteria。

谢谢!

Is it possible to extend NHibernate to add support for aggregate functions that is unique to a database system? I have a handful of queries that use the array_agg() function (and others) in PostgreSQL that I'd like to convert to HQL/ICriteria.

Thanks!

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

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

发布评论

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

评论(1

梦里梦着梦中梦 2024-11-05 07:09:22

是的。这是有可能的。

看一下:
http://ayende.com/Blog/archive/2006/10/01 /UsingSQLFunctionsInNHibernate.aspx

您可以执行以下操作:

public class MyDialect : PostgreSQLDialect
{
       public MyDialect()
       {
              RegisterFunction("dbo.myfunction", new
              StandardSQLFunction(NHibernateUtil.String));
       }
}

然后您可以在 HQL 语句中使用 myfunction 。您只需在 NH 配置中注册方言即可。

编辑:

好消息,这也适用于条件查询。

这是 PostgreSQLDialect 中的代码(来自 Reflector)

base.RegisterFunction("iif", 
    new SQLFunctionTemplate(null, "case when ?1 then ?2 else ?3 end"));

因此,在 ICriteria 中,您可以执行以下操作:

Projections.SqlFunction("iif", NHibernateUtil.Boolean, foo, bar, baz...

所有这些都应该有效,因为您正在扩展 NH Dialect。

华泰

Yes. It's possible.

Take a look:
http://ayende.com/Blog/archive/2006/10/01/UsingSQLFunctionsInNHibernate.aspx

You could do something like this:

public class MyDialect : PostgreSQLDialect
{
       public MyDialect()
       {
              RegisterFunction("dbo.myfunction", new
              StandardSQLFunction(NHibernateUtil.String));
       }
}

Then you can use myfunction in your HQL statements. You just need to register the Dialect in your NH Configuration.

Edit:

Good news, this should work for Criteria queries as well.

This is code (from Reflector) in PostgreSQLDialect

base.RegisterFunction("iif", 
    new SQLFunctionTemplate(null, "case when ?1 then ?2 else ?3 end"));

So in you ICriteria, you could do:

Projections.SqlFunction("iif", NHibernateUtil.Boolean, foo, bar, baz...

All this should work because you're extending a NH Dialect.

HTH

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