When implemented by a class, gets the value indicating if the objects of this IType are mutable.

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

Syntax

C#
bool IsMutable { get; }
Visual Basic
ReadOnly Property IsMutable As Boolean
	Get
Visual C++
property bool IsMutable {
	bool get ();
}

Field Value

true if the objects mapped by this IType are mutable.

Remarks

With respect to the referencing object... Entities and Collections are considered immutable because they manage their own internal state.

See Also