When implemented by a class, gets or sets the SimpleValue that contains information about the Key.

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

Syntax

Visual Basic (Declaration)
Public MustOverride Property Key As SimpleValue
C#
public abstract SimpleValue Key { get; set; }
Visual C++
public:
virtual property SimpleValue^ Key {
	SimpleValue^ get () abstract;
	void set (SimpleValue^ value) abstract;
}
JavaScript
function get_key();
function set_key(value);

Field Value

The SimpleValue that contains information about the Key.

See Also