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

Syntax

Visual Basic (Declaration)
Public Function AddJoin ( _
	associationType As IAssociationType, _
	alias As String, _
	joinType As JoinType, _
	referencingKey As String() _
) As JoinSequence
C#
public JoinSequence AddJoin(
	IAssociationType associationType,
	string alias,
	JoinType joinType,
	string[] referencingKey
)
Visual C++
public:
JoinSequence^ AddJoin(
	IAssociationType^ associationType, 
	String^ alias, 
	JoinType joinType, 
	array<String^>^ referencingKey
)
JavaScript
function addJoin(associationType, alias, joinType, referencingKey);

Parameters

associationType
Type: NHibernate.Type..::.IAssociationType
alias
Type: System..::.String
joinType
Type: NHibernate.SqlCommand..::.JoinType
referencingKey
Type: array< System..::.String >[]()[]

See Also