Determine whether the given name represents a subclass entity (or this entity itself) of the entity mapped by this persister.

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

Syntax

C#
bool IsSubclassEntityName(
	string entityName
)
Visual Basic
Function IsSubclassEntityName ( _
	entityName As String _
) As Boolean
Visual C++
bool IsSubclassEntityName(
	String^ entityName
)

Parameters

entityName
Type: System..::..String
The entity name to be checked.

Return Value

True if the given entity name represents either the entity mapped by this persister or one of its subclass entities; false otherwise.

See Also