Can the entity be modified?
The entity is modifiable if all of the following are true:
- the entity class is mutable
- the entity is not read-only
- if the current status is Status.Deleted, then the entity was not read-only when it was deleted
Namespace: NHibernate.EngineAssembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)
Syntax
C# |
---|
public bool IsModifiableEntity() |
Visual Basic |
---|
Public Function IsModifiableEntity As Boolean |
Visual C++ |
---|
public:
bool IsModifiableEntity() |
Return Value
true, if the entity is modifiable; false, otherwise
See Also