扩展 NHibernate 以支持聚合函数
是否可以扩展 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。这是有可能的。
看一下:
http://ayende.com/Blog/archive/2006/10/01 /UsingSQLFunctionsInNHibernate.aspx
您可以执行以下操作:
然后您可以在 HQL 语句中使用
myfunction
。您只需在 NH 配置中注册方言即可。编辑:
好消息,这也适用于条件查询。
这是 PostgreSQLDialect 中的代码(来自 Reflector)
因此,在 ICriteria 中,您可以执行以下操作:
所有这些都应该有效,因为您正在扩展 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:
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
So in you ICriteria, you could do:
All this should work because you're extending a NH Dialect.
HTH