Gets or Sets the Table that this class is stored in.

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

Syntax

Visual Basic (Declaration)
Public Overridable Property Table As Table
C#
public virtual Table Table { get; set; }
Visual C++
public:
virtual property Table^ Table {
	Table^ get ();
	void set (Table^ value);
}
JavaScript
function get_table();
function set_table(value);

Field Value

The Table this class is stored in.

Remarks

The value of this is set by the table attribute.

See Also