ねえ-私は次のNHibernateICriteria(多基準?)を使用して次のように書く方法を理解するために戦っています:
(これは、最終日のテーブルで人気順に並べられた名のリストを取得するためのクエリです)
select firstname,count(firstname) as occurances from registrants
where timestamp between DateAdd(day,-1, GetDate()) and getdate()
group by firstname
order by count(firstname) desc
また、これはIDを除いたテーブルのほんの数列であり、NHibernateはそのオブジェクトにIDを必要とします。結果を取得できるように、IDを「偽造」する最も簡単な方法は何でしょうか。