使用Postgres聚合函数与NHibernate

时间:2011-04-02 02:33:33

标签: nhibernate postgresql hql icriteria

我有以下查询:

SELECT title_id, title, array_agg(g.name)
FROM title t
INNER JOIN title_genre tg USING(title_id)
INNER JOIN genre g USING (genre_id)
GROUP BY title_id, title
ORDER BY title_id
LIMIT 10

此查询的示例输出:

5527;"The Burbs";"{Suspense,"Dark Humor & Black Comedies",Comedy,"Cult Comedies"}"
5528;"20,000 Leagues Under the Sea";"{"Family Adventures","Children & Family","Ages 5-7","Book Characters","Family Animation"}"
5529;"2001: A Space Odyssey";"{"Classic Sci-Fi & Fantasy","Sci-Fi Thrillers",Classics}"
5530;"2010: The Year We Make Contact";"{"Sci-Fi Dramas","Alien Sci-Fi","Sci-Fi & Fantasy","Dramas Based on Contemporary Literature","Psychological Thrillers","Dramas Based on the Book"}"
5531;"The 39 Steps";"{"Dramas Based on the Book","United Kingdom",Thrillers,"Espionage Thrillers","Dramas Based on Classic Literature",Suspense}"
5532;"4D Man";"{"Classic Sci-Fi & Fantasy","Sci-Fi & Fantasy","Sci-Fi Horror"}"
5533;"8 Seconds";"{Drama,"Romantic Dramas",Biographies,"Indie Dramas","Sports Dramas","Miscellaneous Sports","Sports Stories","Other Sports"}"
5534;"9 1/2 Weeks";"{"Steamy Romance",Romance,"Romantic Dramas"}"
5535;"About Last Night...";"{"Romantic Dramas","Romantic Comedies",Romance}"
5536;"Above the Law";"{"Action & Adventure","Action Thrillers","Martial Arts"}"

(1)如何围绕array_agg函数创建NHibernate标准?我是否需要以任何方式扩展PostgreSQL方言以适应这种情况?

(2)我使用SQLite作为我的集成测试数据库,使用PostgreSQL作为我的test / prod数据库。 SQLite没有array_agg函数,但有一个group_concat函数可以执行类似的操作。是否可以设置一些我可以在我的测试中使用SQLite和在test / prod中使用PostgreSQL的东西?

(3)array_agg将数据作为数组返回。我在nhibernate.info上发现了一篇很棒的文章,解释了如何扩展NHibernate以处理PostgreSQL数组。如何在我的标准中包含此内容?例如,假设我想找一个戏剧类型的标题,而不是浪漫剧。

提前感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

  

(1)如何创建NHibernate   array_agg周围的标准   功能?我需要延长吗?   PostgreSQL方言以任何方式   容纳这个?

我认为你不应该这样做。假设您想按流派选择所有标题,您只需要一个WHERE子句将该类型解析为其ID号。出于一个原因,varchar列上的子选择可以使用索引。另一个原因,我很确定通过这样做,你的问题#3就会消失。

SELECT title_id, title, array_agg(g.genre)
FROM title t
INNER JOIN title_genre tg USING(title_id)
INNER JOIN genre g USING (genre_id)
WHERE tg.title_id in (SELECT title_id 
                      FROM title_genre 
                      INNER JOIN genre ON genre.genre_id = title_genre.genre_id 
                                      AND genre.genre = 'Suspense'
                      )
GROUP BY title_id, title
ORDER BY title_id
LIMIT 10

也可以在同一个子查询上使用内部联接编写。

SELECT t.title_id, t.title, array_agg(g.genre)
FROM title t
INNER JOIN title_genre tg USING(title_id)
INNER JOIN genre g USING (genre_id)
INNER JOIN (SELECT title_id 
            FROM title_genre 
            INNER JOIN genre ON genre.genre_id = title_genre.genre_id 
                            AND genre.genre = 'Suspense'
            ) gn
            ON gn.title_id = tg.title_id
GROUP BY t.title_id, t.title
ORDER BY t.title_id
LIMIT 10
  

(2)是否可以设置一些东西   我将能够在我的网站中使用SQLite   test和prod中的测试和PostgreSQL?

在生产中使用的开发中使用相同的平台是可能的 - 也是可取的。安装PostgreSQL并使用它而不是SQLite。