Given a property name, determine the number of the table which contains the column to which this property is mapped.

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

Syntax

C#
int GetSubclassPropertyTableNumber(
	string propertyPath
)
Visual Basic
Function GetSubclassPropertyTableNumber ( _
	propertyPath As String _
) As Integer
Visual C++
int GetSubclassPropertyTableNumber(
	String^ propertyPath
)

Parameters

propertyPath
Type: System..::..String
The name of the property.

Return Value

The number of the table to which the property is mapped.

Remarks

Note that this is not relative to the results from {@link #getConstraintOrderedTableNameClosure()}. It is relative to the subclass table name closure maintained internal to the persister (yick!). It is also relative to the indexing used to resolve {@link #getSubclassTableName}...

See Also