Create a join sequence rooted at the given collection.

Namespace: NHibernate.Hql.Ast.ANTLR
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public JoinSequence CreateCollectionJoinSequence(
	IQueryableCollection collPersister,
	string collectionName
)
Visual Basic
Public Function CreateCollectionJoinSequence ( _
	collPersister As IQueryableCollection, _
	collectionName As String _
) As JoinSequence
Visual C++
public:
JoinSequence^ CreateCollectionJoinSequence(
	IQueryableCollection^ collPersister, 
	String^ collectionName
)

Parameters

collPersister
Type: NHibernate.Persister.Collection..::..IQueryableCollection
The persister for the collection at which the join should be rooted.
collectionName
Type: System..::..String
The alias to use for qualifying column references.

Return Value

The generated join sequence.

See Also