Adds the specified query to the query. The result will be contained in a List<(Of <(<'T>)>)>

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

Syntax

C#
IMultiQuery Add(
	Type resultGenericListType,
	IQuery query
)
Visual Basic
Function Add ( _
	resultGenericListType As Type, _
	query As IQuery _
) As IMultiQuery
Visual C++
IMultiQuery^ Add(
	Type^ resultGenericListType, 
	IQuery^ query
)

Parameters

resultGenericListType
Type: System..::..Type
Return results in a List<(Of <(<'T>)>)>
query
Type: NHibernate..::..IQuery
The query.

Return Value

The instance for method chain.

See Also