Does NHibernate support SQL partition by with over using RANK() or ROW_Number()
Please advise how to write NHibernate query over for below .
SELECT this_.ORDERNUMBER
,ROW_NUMBER () OVER ( PARTITION by this_.ORDERNUMBER
) orderline
FROM Table1 this_