DomainObjects Class Library

IDeletable Interface

Defines methods to set and determine if the implementing instance needs to be deleted from the database upon transaction commit.

For a list of all members of this type, see IDeletable Members.

DomainObjects.Facade.Domain.IDeletable
   IEditable
   IImmutable

public interface IDeletable : ITransactable, IPersistable, ISerializable, IXmlSerializable

Types that implement IDeletable

Type Description
EditableObject Implements methods for persistable objects that require editable semantics: i.e., persistable objects that can be inserted into, updated to and deleted from the database. Subtype this class when your class requires editable semantics.
ImmutableObject Defines methods for persistable objects that require immutable semantics: i.e., persistable objects that can be inserted into and deleted from the database but must never be edited and therefore updated to the database. Subtype this class when your class requires immutable semantics.
TransactableObject Defines methods required by a persistable object that can participate in a transaction.

Requirements

Namespace: DomainObjects.Facade.Domain

Assembly: DomainObjects.Core (in DomainObjects.Core.dll)

See Also

IDeletable Members | DomainObjects.Facade.Domain Namespace