Build an enumerable over the properties defined on this class which are not defined as part of a join. As with PropertyIterator the returned iterator only accounts for non-identifier properties.

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

Syntax

C#
public virtual IEnumerable<Property> UnjoinedPropertyIterator { get; }
Visual Basic
Public Overridable ReadOnly Property UnjoinedPropertyIterator As IEnumerable(Of Property)
	Get
Visual C++
public:
virtual property IEnumerable<Property^>^ UnjoinedPropertyIterator {
	IEnumerable<Property^>^ get ();
}

Return Value

An enumerable over the non-joined "normal" properties.

See Also