Retrieves a set of all the collection roles in which the given entity is a participant, as either an index or an element.

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

Syntax

C#
ISet<string> GetCollectionRolesByEntityParticipant(
	string entityName
)
Visual Basic
Function GetCollectionRolesByEntityParticipant ( _
	entityName As String _
) As ISet(Of String)
Visual C++
ISet<String^>^ GetCollectionRolesByEntityParticipant(
	String^ entityName
)

Parameters

entityName
Type: System..::..String
The entity name for which to get the collection roles.

Return Value

Set of all the collection roles in which the given entityName participates.

See Also