Add the specified HQL query to the multi 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<T>(
	string hql
)
Visual Basic
Function Add(Of T) ( _
	hql As String _
) As IMultiQuery
Visual C++
generic<typename T>
IMultiQuery^ Add(
	String^ hql
)

Parameters

hql
Type: System..::..String
The query

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:NHibernate.IMultiQuery.Add``1(System.String)"]

Return Value

The instance for method chain.

See Also