Design Pattern Framework 3.5
PersistType Enumeration
Patterns-In-Action! Application ► ActionService.MessageBase ► PersistType
Enumeration of database persistence actions.
(Also called CRUD operations: Create, Read, Update, Delete).
SOA Design Pattern: Command Message. Basically this in an instruction
or command to the receiver which operatin to execute.
Declaration Syntax
C# | Visual Basic |
public enum PersistType
Public Enumeration PersistType
Members
Member | Description |
---|---|
Insert |
Insert record in database.
|
Update |
Update record in database.
|
Delete |
Delete record from database.
|