The state of an IEntity.
Namespace: Breeze.Sharp
Assembly: Breeze.Sharp (in Breeze.Sharp.dll) Version: 0.6.0.5 (0.6.0.5)
Syntax
Members
Member name | Value | Description | |
---|---|---|---|
Detached | 1 | The entity has been created but is not part of any EntityGroup. A Entity is in this state immediately after it has been created and before it is added to the EntityManager, or if it has been removed from the EntityManager. | |
Unchanged | 2 | The entity has not changed since last queried or saved. | |
Added | 4 | The entity has been added to the EntityManager. | |
Deleted | 8 | The entity was deleted using the Entity.Delete() method. | |
Modified | 16 | The entity has been modified and EntityManager.SaveChanges() has not been called. | |
AnyAddedModifiedOrDeleted | 28 | Added or Modified or Deleted. | |
AllButDetached | 30 | All states except detached. |
Remarks
See Also