Adds a Table that a subclass is stored in.

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

Syntax

Visual Basic (Declaration)
Public Overrides Sub AddSubclassTable ( _
	table As Table _
)
C#
public override void AddSubclassTable(
	Table table
)
Visual C++
public:
virtual void AddSubclassTable(
	Table^ table
) override
JavaScript
function addSubclassTable(table);

Parameters

table
Type: NHibernate.Mapping..::.Table
The Table the subclass is stored in.

Remarks

This also adds the Table to the Superclass' collection of Subclass Tables.

See Also