Returns an array of objects that identify spaces in which properties of this entity are persisted, for instances of this class only.

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

Syntax

C#
string[] PropertySpaces { get; }
Visual Basic
ReadOnly Property PropertySpaces As String()
	Get
Visual C++
property array<String^>^ PropertySpaces {
	array<String^>^ get ();
}

Return Value

The property spaces.

Remarks

For most implementations, this returns the complete set of table names to which instances of the mapped entity are persisted (not accounting for superclass entity mappings).

See Also