Windows Azure 中如何在TableStorage中存取数据
namespace Microsoft.WindowsAzure.StorageClient { // Summary: // Represents an entity in the Windows Azure Table service. [CLSCompliant(false)] public abstract class TableServiceEntity { // Summary: // Initializes a new instance of the Microsoft.WindowsAzure.StorageClient.TableServiceEntity // class. protected TableServiceEntity(); // // Summary: // Initializes a new instance of the Microsoft.WindowsAzure.StorageClient.TableServiceEntity // class. // // Parameters: // partitionKey: // The partition key. // // rowKey: // The row key. protected TableServiceEntity(string partitionKey, string rowKey); // Summary: // Gets or sets the partition key of a table entity. public virtual string PartitionKey { get; set; } // // Summary: // Gets or sets the row key of a table entity. public virtual string RowKey { get; set; } // // Summary: // Gets or sets the timestamp for the entity. public DateTime Timestamp { get; set; } } }
相关文章