Share via


TableColumnType Enumeration

 

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.

Namespace:   Microsoft.WindowsAzure.Mobile.Service.Tables
Assembly:  Microsoft.WindowsAzure.Mobile.Service.Tables (in Microsoft.WindowsAzure.Mobile.Service.Tables.dll)

Syntax

public enum TableColumnType
public enum class TableColumnType
type TableColumnType
Public Enumeration TableColumnType

Members

Member name Description
CreatedAt

Represents the date and time the entity was created.

Deleted

Represents a value indicating whether the entity has been deleted.

Id

Represents a unique ID property.

None

Not a table column

UpdatedAt

Represents the date and time the entity was last modified.

Version

Represents a unique version identifier property which is updated every time the entity is updated.

See Also

Microsoft.WindowsAzure.Mobile.Service.Tables Namespace

Return to top