Class AzureTableEntityKey
Use this if/when you don't have the full strongly-typed entity, but you do have the PartitionKey and RowKey for operations that just need the key values.
Inheritance
System.Object
AzureTableEntityKey
Implements
Microsoft.Azure.Cosmos.Table.ITableEntity
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Ease.Repository.AzureTable
Assembly: Ease.Repository.AzureTable.dll
Syntax
public class AzureTableEntityKey : ITableEntity
Properties
| Improve this Doc View SourceETag
Declaration
public string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
PartitionKey
Declaration
public string PartitionKey { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
RowKey
Declaration
public string RowKey { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Timestamp
Declaration
public DateTimeOffset Timestamp { get; set; }
Property Value
| Type | Description |
|---|---|
| System.DateTimeOffset |
Methods
| Improve this Doc View SourceReadEntity(IDictionary<String, EntityProperty>, OperationContext)
Declaration
public void ReadEntity(IDictionary<string, EntityProperty> properties, OperationContext operationContext)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Collections.Generic.IDictionary<System.String, Microsoft.Azure.Cosmos.Table.EntityProperty> | properties | |
| Microsoft.Azure.Cosmos.Table.OperationContext | operationContext |
WriteEntity(OperationContext)
Declaration
public IDictionary<string, EntityProperty> WriteEntity(OperationContext operationContext)
Parameters
| Type | Name | Description |
|---|---|---|
| Microsoft.Azure.Cosmos.Table.OperationContext | operationContext |
Returns
| Type | Description |
|---|---|
| System.Collections.Generic.IDictionary<System.String, Microsoft.Azure.Cosmos.Table.EntityProperty> |
Implements
Microsoft.Azure.Cosmos.Table.ITableEntity