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#
public abstract bool IsMutable { get; }
Visual Basic
Public MustOverride ReadOnly Property IsMutable As Boolean
	Get
Visual C++
public:
virtual property bool IsMutable {
	bool get () abstract;
}

Field Value

true if the objects mapped by this IType are mutable.

Implements

IType..::..IsMutable

Remarks

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

See Also