Create a multi query, a query that can send several queries to the server, and return all their results in a single call.

Namespace:  NHibernate
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Function CreateMultiQuery As IMultiQuery
C#
IMultiQuery CreateMultiQuery()
Visual C++
IMultiQuery^ CreateMultiQuery()
JavaScript
function createMultiQuery();

Return Value

An IMultiQuery that can return a list of all the results of all the queries. Note that each query result is itself usually a list.

See Also