Gets the Type that is being mapped.

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

Syntax

Visual Basic (Declaration)
Public Overridable Property MappedClass As Type
C#
public virtual Type MappedClass { get; set; }
Visual C++
public:
virtual property Type^ MappedClass {
	Type^ get ();
	void set (Type^ value);
}
JavaScript
function get_mappedClass();
function set_mappedClass(value);

Field Value

The Type that is being mapped.

Remarks

The value of this is set by the name attribute on the <class> element.

See Also