TableColumnType 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.
Provides an indication of type of table column a given property is. The TableColumnType is used in connection with the TableControllerConfigAttribute which can be used to decorate a data type.
public enum TableColumnType
type TableColumnType =
Public Enum TableColumnType
- Inheritance
-
TableColumnType
Fields
Name | Value | Description |
---|---|---|
None | 0 | Not a table column |
Id | 1 | Represents a unique ID property. |
Version | 2 | Represents a unique version identifier property which is updated every time the entity is updated. |
CreatedAt | 3 | Represents the date and time the entity was created. |
UpdatedAt | 4 | Represents the date and time the entity was last modified. |
Deleted | 5 | Represents a value indicating whether the entity has been deleted. |
Applies to
Azure SDK for .NET