Create a new ICriteria instance, for the given entity class, or a superclass of an entity class, with the given alias.

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

Syntax

C#
ICriteria CreateCriteria<T>(
	string alias
)
where T : class
Visual Basic
Function CreateCriteria(Of T As Class) ( _
	alias As String _
) As ICriteria
Visual C++
generic<typename T>
where T : ref class
ICriteria^ CreateCriteria(
	String^ alias
)

Parameters

alias
Type: System..::..String
The alias of the entity

Type Parameters

T
A class, which is persistent, or has persistent subclasses

Return Value

The ICriteria.

Remarks

Entities returned by the query are detached.

See Also