Namespace:  NHibernate.Persister.Entity
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Function GetSubclassPropertyTableNumber ( _
	propertyPath As String _
) As Integer
C#
public int GetSubclassPropertyTableNumber(
	string propertyPath
)
Visual C++
public:
int GetSubclassPropertyTableNumber(
	String^ propertyPath
)
JavaScript
function getSubclassPropertyTableNumber(propertyPath);

Parameters

propertyPath
Type: System..::.String

Remarks

Warning: When there are duplicated property names in the subclasses of the class, this method may return the wrong table number for the duplicated subclass property (note that SingleTableEntityPersister defines an overloaded form which takes the entity name.

See Also