Class ExpandObjectTableEntity

Inheritance
ExpandObjectTableEntity
Namespace: ETLBox.Azure.Tables
Assembly: ETLBox.Azure.Tables.dll
Syntax
    public class ExpandObjectTableEntity : DynamicObject, IDynamicMetaObjectProvider, ITableEntity

Properties

ETag

Gets or sets the entity's ETag.

Declaration
    public ETag ETag { get; set; }
Property Value
TypeDescription
ETag

A string containing the ETag value for the entity.

PartitionKey

The partition key is a unique identifier for the partition within a given table and forms the first part of an entity's primary key.

Declaration
    public string PartitionKey { get; set; }
Property Value
TypeDescription
string

A string containing the partition key for the entity.

RowKey

The row key is a unique identifier for an entity within a given partition. Together the PartitionKey and RowKey uniquely identify every entity within a table.

Declaration
    public string RowKey { get; set; }
Property Value
TypeDescription
string

A string containing the row key for the entity.

Timestamp

The Timestamp property is a DateTime value that is maintained on the server side to record the time an entity was last modified. The Table service uses the Timestamp property internally to provide optimistic concurrency. The value of Timestamp is a monotonically increasing value, meaning that each time the entity is modified, the value of Timestamp increases for that entity. This property should not be set on insert or update operations (the value will be ignored).

Declaration
    public DateTimeOffset? Timestamp { get; set; }
Property Value
TypeDescription
DateTimeOffset?

A DateTimeOffset containing the timestamp of the entity.

Implements