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

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

Syntax

C#
ICriteria CreateCriteria(
	Type entityType
)
Visual Basic
Function CreateCriteria ( _
	entityType As Type _
) As ICriteria
Visual C++
ICriteria^ CreateCriteria(
	Type^ entityType
)

Parameters

entityType
Type: System..::..Type
A class, which is persistent, or has persistent subclasses

Return Value

The ICriteria.

Remarks

Entities returned by the query are detached.

See Also