Search code examples
nhibernatequeryovermulti-query

Can NHibernate QueryOver use MultiQuery?


session.CreateMultiQuery().Add(...) accepts IQuery, but IQueryOver does not appear to inherit from IQuery.

Seems strange to me that I can't user QueryOver in a multi query?


Solution

  • QueryOver uses .Future() which does the same as MultiQuery.