Should we join this association?

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

Syntax

Visual Basic (Declaration)
Protected Function IsJoinable ( _
	joinType As JoinType, _
	visitedAssociationKeys As ISet, _
	lhsTable As String, _
	lhsColumnNames As String(), _
	type As IAssociationType, _
	depth As Integer _
) As Boolean
C#
protected bool IsJoinable(
	JoinType joinType,
	ISet visitedAssociationKeys,
	string lhsTable,
	string[] lhsColumnNames,
	IAssociationType type,
	int depth
)
Visual C++
protected:
bool IsJoinable(
	JoinType joinType, 
	ISet^ visitedAssociationKeys, 
	String^ lhsTable, 
	array<String^>^ lhsColumnNames, 
	IAssociationType^ type, 
	int depth
)
JavaScript
function isJoinable(joinType, visitedAssociationKeys, lhsTable, lhsColumnNames, type, depth);

Parameters

joinType
Type: NHibernate.SqlCommand..::.JoinType
visitedAssociationKeys
Type: ISet
lhsTable
Type: System..::.String
lhsColumnNames
Type: array< System..::.String >[]()[]
type
Type: NHibernate.Type..::.IAssociationType
depth
Type: System..::.Int32

See Also