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()。