Return the names of all persistent (mapped) classes that extend or implement the given class or interface, accounting for implicit/explicit polymorphism settings and excluding mapped subclasses/joined-subclasses of other classes in the result.

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

Syntax

C#
public string[] GetImplementors(
	string entityOrClassName
)
Visual Basic
Public Function GetImplementors ( _
	entityOrClassName As String _
) As String()
Visual C++
public:
virtual array<String^>^ GetImplementors(
	String^ entityOrClassName
) sealed

Parameters

entityOrClassName
Type: System..::..String

[Missing <param name="entityOrClassName"/> documentation for "M:NHibernate.Impl.SessionFactoryImpl.GetImplementors(System.String)"]

Return Value

[Missing <returns> documentation for "M:NHibernate.Impl.SessionFactoryImpl.GetImplementors(System.String)"]

Implements

ISessionFactoryImplementor..::..GetImplementors(String)

See Also