ColumnType 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.
Column Types, used for class Column.
public enum ColumnType
type ColumnType =
Public Enum ColumnType
- Inheritance
-
ColumnType
Fields
Name | Value | Description |
---|---|---|
Regular | 0 | The column is a regular identifier. |
IdentityCol | 1 | IDENTITYCOL was used to define the column. |
RowGuidCol | 2 | ROWGUIDCOL was used to define the column. |
Wildcard | 3 | '*' the STAR reserved word was used to define the column. |
PseudoColumnIdentity | 4 | $Identity was used to define the column. |
PseudoColumnRowGuid | 5 | $Rowguid was used to define the column. |
PseudoColumnAction | 6 | $ACTION was used to define the column. |
PseudoColumnCuid | 7 | $CUID was used to define the column. |
PseudoColumnGraphNodeId | 8 | $node_id was used to define the column. |
PseudoColumnGraphEdgeId | 9 | $edge_id was used to define the column. |
PseudoColumnGraphFromId | 10 | $from_id was used to define the column. |
PseudoColumnGraphToId | 11 | $to_id was used to define the column. |