Enum CommandType
Specifies the type of command that produced a log.
Namespace: Venflow.Enums
Assembly: Venflow.dll
Syntax
public enum CommandType : short
Fields
| Name | Description |
|---|---|
| Delete | All delete commands. |
| DeleteBatch | A delete command deleting a batch of entities. |
| DeleteSingle | A delete command deleting a single entity. |
| Insert | All insert commands. |
| InsertBatch | An insert command inserting a batch of entities. |
| InsertSingle | An insert command inserting a single entity. |
| Query | All query commands. |
| QueryBatch | A query command returning a batch of entities. |
| QuerySingle | A query command returning a single entity. |
| Update | All update commands. |
| UpdateBatch | A update command updating a batch of entities. |
| UpdateSingle | A update command updating a single entity. |