DbCommandTreeKind Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Describes the different "kinds" (classes) of command trees.
public enum DbCommandTreeKind
type DbCommandTreeKind =
Public Enum DbCommandTreeKind
- Inheritance
-
DbCommandTreeKind
Fields
Name | Value | Description |
---|---|---|
Query | 0 | A query to retrieve data |
Update | 1 | Update existing data |
Insert | 2 | Insert new data |
Delete | 3 | Deleted existing data |
Function | 4 | Call a function |