select T.Id, count(Th.ampount)
from TH, T
where Th.Tid= T.id
group by T.Id
流暢なnhibernateを使用して上記のクエリを作成する方法。CreateSQLQuery()を使用したくありません。
select T.Id, count(Th.ampount)
from TH, T
where Th.Tid= T.id
group by T.Id
流暢なnhibernateを使用して上記のクエリを作成する方法。CreateSQLQuery()を使用したくありません。