Override on subclasses to enable or suppress joining of certain association types

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

Syntax

Visual Basic (Declaration)
Protected Overridable Function IsJoinedFetchEnabled ( _
	type As IAssociationType, _
	config As FetchMode, _
	cascadeStyle As Cascades..::.CascadeStyle _
) As Boolean
C#
protected virtual bool IsJoinedFetchEnabled(
	IAssociationType type,
	FetchMode config,
	Cascades..::.CascadeStyle cascadeStyle
)
Visual C++
protected:
virtual bool IsJoinedFetchEnabled(
	IAssociationType^ type, 
	FetchMode config, 
	Cascades..::.CascadeStyle^ cascadeStyle
)
JavaScript
function isJoinedFetchEnabled(type, config, cascadeStyle);

See Also