Get the columns of the owning entity which are to be used in the join

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

Syntax

Visual Basic (Declaration)
Public Shared Function GetLHSColumnNames ( _
	type As IAssociationType, _
	property As Integer, _
	begin As Integer, _
	lhsPersister As IOuterJoinLoadable, _
	mapping As IMapping _
) As String()
C#
public static string[] GetLHSColumnNames(
	IAssociationType type,
	int property,
	int begin,
	IOuterJoinLoadable lhsPersister,
	IMapping mapping
)
Visual C++
public:
static array<String^>^ GetLHSColumnNames(
	IAssociationType^ type, 
	int property, 
	int begin, 
	IOuterJoinLoadable^ lhsPersister, 
	IMapping^ mapping
)
JavaScript
NHibernate.Engine.JoinHelper.getLHSColumnNames = function(type, property, begin, lhsPersister, mapping);

See Also