When implemented by a class, gets or set a boolean indicating
if the mapped class has properties that can be changed.
Namespace:
NHibernate.Mapping
Assembly:
NHibernate (in NHibernate.dll)
Syntax
Visual Basic (Declaration) |
---|
Public MustOverride Property IsMutable As Boolean |
C# |
---|
public abstract bool IsMutable { get; set; } |
Visual C++ |
---|
public:
virtual property bool IsMutable {
bool get () abstract;
void set (bool value) abstract;
} |
JavaScript |
---|
function get_isMutable();
function set_isMutable(value); |
Field Value
trueTruetruetrue (True in Visual Basic) if the object is mutable.
Remarks
See Also