Used to detect circularities in the joined graph, note that this method is side-effecty

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

Syntax

Visual Basic (Declaration)
Protected Overridable Function IsDuplicateAssociation ( _
	lhsTable As String, _
	lhsColumnNames As String(), _
	type As IAssociationType _
) As Boolean
C#
protected virtual bool IsDuplicateAssociation(
	string lhsTable,
	string[] lhsColumnNames,
	IAssociationType type
)
Visual C++
protected:
virtual bool IsDuplicateAssociation(
	String^ lhsTable, 
	array<String^>^ lhsColumnNames, 
	IAssociationType^ type
)
JavaScript
function isDuplicateAssociation(lhsTable, lhsColumnNames, type);

Parameters

lhsTable
Type: System..::.String
lhsColumnNames
Type: array< System..::.String >[]()[]
type
Type: NHibernate.Type..::.IAssociationType

See Also